Skip to content

Commit 4a71720

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 063438f + 60913f1 commit 4a71720

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/ci-linux.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,13 @@ jobs:
1919
dotnet-version: 8.0.x
2020
- name: Restore dependencies
2121
run: |
22+
sudo apt-get update
23+
sudo apt-get install mono-complete
24+
dotnet tool install paket --global
2225
dotnet tool restore
23-
dotnet paket install
26+
paket restore
27+
paket install
2428
- name: Build
2529
run: ./build.sh
2630
- name: Test
27-
run: dotnet test --no-build --verbosity normal
31+
run: dotnet test ./SQLProvider.Tests.sln --no-build --verbosity normal

.github/workflows/ci-win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ jobs:
2424
- name: Build
2525
run: ./build.cmd
2626
- name: Test
27-
run: dotnet test ./SQLPovider.Test.sln --no-build --verbosity normal
27+
run: dotnet test ./SQLProvider.Tests.sln --no-build --verbosity normal

0 commit comments

Comments
 (0)