Skip to content

Commit

Permalink
refactor(unit-test): Run tests on windows-latest and ubuntu-latest
Browse files Browse the repository at this point in the history
  • Loading branch information
ViMaSter committed Feb 24, 2023
1 parent 611a9ec commit c96bb7c
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,20 @@ on:

jobs:
unit-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]

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

steps:
- uses: actions/checkout@v3
with:
path: app
- name: Setup .NET Core
uses: actions/setup-dotnet@v3

- name: Build with dotnet
run: dotnet build --configuration Release
working-directory: app
Expand All @@ -41,6 +47,4 @@ jobs:
with:
name: test-results
path: app/test-results
if: ${{ always() }}


if: ${{ always() }}

0 comments on commit c96bb7c

Please sign in to comment.