Skip to content

Commit

Permalink
work around slnx issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ssg committed Sep 21, 2024
1 parent 0c6aab3 commit b73de1d
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,22 @@ jobs:
dotnet-version: 8.0.x

- name: Restore dependencies
run: dotnet restore
run: |
dotnet restore src
dotnet restore test
dotnet restore benchmark
- name: Build
run: dotnet build --no-restore --configuration Release
run: |
dotnet build --no-restore --configuration Release src
dotnet build --no-restore --configuration Release test
dotnet build --no-restore --configuration Release benchmark
- name: Run tests
run: dotnet test --no-build --configuration Release
run: dotnet test --no-build --configuration Release test

- name: Pack
run: dotnet pack --no-build --configuration Release --output ./nupkg
run: dotnet pack src --no-build --configuration Release --output ./nupkg

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

0 comments on commit b73de1d

Please sign in to comment.