We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent addb2a4 commit bc26fb4Copy full SHA for bc26fb4
2 files changed
.github/workflows/build.yml
@@ -8,13 +8,16 @@ jobs:
8
runs-on: macOS-10.14
9
10
steps:
11
-
+
12
- uses: actions/checkout@v1
13
14
+ - name: Restore NuGets
15
+ run: nuget restore SQLite.sln
16
17
- name: Build and Test
18
run: make test
19
- - name: Make nuget
20
+ - name: Make NuGet
21
run: |
22
make nuget
23
mkdir PackageOut
Makefile
@@ -8,7 +8,6 @@ test: tests/bin/Release/SQLite.Tests.dll tests/ApiDiff/bin/Release/ApiDiff.exe
mono tests/ApiDiff/bin/Release/ApiDiff.exe
tests/bin/Release/SQLite.Tests.dll: tests/SQLite.Tests.csproj $(SRC)
- msbuild /p:Configuration=Release /t:Restore tests/SQLite.Tests.csproj
msbuild /p:Configuration=Release tests/SQLite.Tests.csproj
tests/ApiDiff/bin/Release/ApiDiff.exe: tests/ApiDiff/ApiDiff.csproj $(SRC)
0 commit comments