Skip to content

Add NOCASE collation to the DownloadDir column in order for it to use… #177

Add NOCASE collation to the DownloadDir column in order for it to use…

Add NOCASE collation to the DownloadDir column in order for it to use… #177

Workflow file for this run

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