We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 063438f + 60913f1 commit 4a71720Copy full SHA for 4a71720
2 files changed
.github/workflows/ci-linux.yml
@@ -19,9 +19,13 @@ jobs:
19
dotnet-version: 8.0.x
20
- name: Restore dependencies
21
run: |
22
+ sudo apt-get update
23
+ sudo apt-get install mono-complete
24
+ dotnet tool install paket --global
25
dotnet tool restore
- dotnet paket install
26
+ paket restore
27
+ paket install
28
- name: Build
29
run: ./build.sh
30
- name: Test
- run: dotnet test --no-build --verbosity normal
31
+ run: dotnet test ./SQLProvider.Tests.sln --no-build --verbosity normal
.github/workflows/ci-win.yml
@@ -24,4 +24,4 @@ jobs:
run: ./build.cmd
- run: dotnet test ./SQLPovider.Test.sln --no-build --verbosity normal
0 commit comments