Skip to content

Commit b73de1d

Browse files
committed
work around slnx issues
1 parent 0c6aab3 commit b73de1d

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/test.yml

+10-4
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,22 @@ jobs:
1515
dotnet-version: 8.0.x
1616

1717
- name: Restore dependencies
18-
run: dotnet restore
18+
run: |
19+
dotnet restore src
20+
dotnet restore test
21+
dotnet restore benchmark
1922
2023
- name: Build
21-
run: dotnet build --no-restore --configuration Release
24+
run: |
25+
dotnet build --no-restore --configuration Release src
26+
dotnet build --no-restore --configuration Release test
27+
dotnet build --no-restore --configuration Release benchmark
2228
2329
- name: Run tests
24-
run: dotnet test --no-build --configuration Release
30+
run: dotnet test --no-build --configuration Release test
2531

2632
- name: Pack
27-
run: dotnet pack --no-build --configuration Release --output ./nupkg
33+
run: dotnet pack src --no-build --configuration Release --output ./nupkg
2834

2935
- name: Publish to NuGet
3036
if: startsWith(github.ref, 'refs/tags/')

0 commit comments

Comments
 (0)