Skip to content

Commit

Permalink
Fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
RenNagasaki committed Feb 27, 2025
1 parent 6882b2c commit 90db642
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,19 @@ jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ '8.0.x', '7.0.x' ]

steps:
- uses: actions/checkout@v4
- name: Setup .NET
- name: Setup dotnet ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.10
- name: Restore dependencies
dotnet-version: ${{ matrix.dotnet-version }}
- name: Restore dependencies ${{ matrix.dotnet-version }}
run: dotnet restore
- name: Build
- name: Build ${{ matrix.dotnet-version }}
run: dotnet build --no-restore
- name: Test
- name: Test ${{ matrix.dotnet-version }}
run: dotnet test --no-build --verbosity normal

0 comments on commit 90db642

Please sign in to comment.