Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
EliMoshkovich committed Sep 27, 2024
1 parent cbb17e7 commit a295c0d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/dotnet-sdk-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'
dotnet-version: '8.0.x'

- name: Restore dependencies
working-directory: ./src/permit
Expand All @@ -42,7 +42,9 @@ jobs:

- name: Run Tests
working-directory: ./tests/PermitTests
run: dotnet test --configuration Release
run: |
dotnet restore
dotnet test --configuration Release
# - name: Update VersionPrefix in .csproj
# run: |
Expand Down

0 comments on commit a295c0d

Please sign in to comment.