upgraded to xunit v3 (#119) #37
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: 'Common.Data.SQL CI' | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "master" ] | |
paths: | |
- 'src/JK.Common.Data.Sql/**' | |
- 'src/JK.Common.Data.Sql.Tests/**' | |
pull_request: | |
branches: [ "master" ] | |
paths: | |
- 'src/JK.Common.Data.Sql/**' | |
- 'src/JK.Common.Data.Sql.Tests/**' | |
permissions: | |
contents: read | |
pull-requests: read | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET SDKs | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
9.x | |
8.x | |
- name: Build | |
run: dotnet build ./src/JK.Common.Data.Sql/JK.Common.Data.Sql.csproj -c Release | |
- name: Test | |
run: dotnet test ./src/JK.Common.Data.Sql.Tests/JK.Common.Data.Sql.Tests.csproj --verbosity normal |