Add NOCASE collation to the DownloadDir column in order for it to use… #177
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Build and Test" | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '9.x' | |
- name: Restore dependencies | |
run: dotnet restore src/TransmissionManager.sln | |
- name: Build solution | |
run: dotnet build src/TransmissionManager.sln --no-restore | |
- name: Run all tests | |
run: dotnet test src/TransmissionManager.sln --no-build --verbosity normal |