Skip to content

Commit bc26fb4

Browse files
committed
Fix build step
1 parent addb2a4 commit bc26fb4

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,16 @@ jobs:
88
runs-on: macOS-10.14
99

1010
steps:
11-
11+
1212
- uses: actions/checkout@v1
1313

14+
- name: Restore NuGets
15+
run: nuget restore SQLite.sln
16+
1417
- name: Build and Test
1518
run: make test
1619

17-
- name: Make nuget
20+
- name: Make NuGet
1821
run: |
1922
make nuget
2023
mkdir PackageOut

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ test: tests/bin/Release/SQLite.Tests.dll tests/ApiDiff/bin/Release/ApiDiff.exe
88
mono tests/ApiDiff/bin/Release/ApiDiff.exe
99

1010
tests/bin/Release/SQLite.Tests.dll: tests/SQLite.Tests.csproj $(SRC)
11-
msbuild /p:Configuration=Release /t:Restore tests/SQLite.Tests.csproj
1211
msbuild /p:Configuration=Release tests/SQLite.Tests.csproj
1312

1413
tests/ApiDiff/bin/Release/ApiDiff.exe: tests/ApiDiff/ApiDiff.csproj $(SRC)

0 commit comments

Comments
 (0)