Skip to content

Commit

Permalink
fix: use build test instead of unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
BiDuang committed Nov 24, 2023
1 parent 94c81b8 commit 07730ef
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
dotnet_version: ['7','8']
dotnet_version: ['7.0','8.0']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/[email protected]
with:
dotnet-version: ${{ matrix.dotnet_versions }}
- uses: actions/checkout@v4
- uses: actions/checkout@v4
- name: Restore packages
run: dotnet restore
- name: Test
run: dotnet test -c Release -f net8.0 --no-restore
run: dotnet restore
- name: Build Test
run: dotnet build -c Release -f net${{ matrix.dotnet_version }} --no-restore

0 comments on commit 07730ef

Please sign in to comment.