Skip to content

Commit

Permalink
[GitHub -> Actions] Make CI run on Windows and Ubuntu.
Browse files Browse the repository at this point in the history
  • Loading branch information
AnalogFeelings authored Feb 8, 2024
1 parent 0938f54 commit f70104b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
run-unit-tests:
strategy:
matrix:
configuration: [ Debug, Release ]
os: [ ubuntu-latest, windows-latest ]
dotnet-version: [ '8.0.x' ]

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}

steps:
- name: Checkout Repository
Expand All @@ -43,7 +43,7 @@ jobs:
run: dotnet restore

- name: Build Tests
run: dotnet build --configuration ${{ matrix.configuration }} --no-restore
run: dotnet build --configuration Release --no-restore

- name: Run Tests
run: dotnet test --no-restore --verbosity normal

0 comments on commit f70104b

Please sign in to comment.