Skip to content

Commit

Permalink
ci(gh-actions): build and test with DevEx configuration too
Browse files Browse the repository at this point in the history
  • Loading branch information
moreal committed May 17, 2023
1 parent 5ff2fab commit 3bae3db
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@ on: [push, pull_request]

jobs:
build-and-tests:
name: "build-and-tests (${{ matrix.configuration }})"
strategy:
matrix:
os:
- ubuntu-20.04
- windows-latest
configuration:
- Release
- DevEx
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand All @@ -22,7 +26,7 @@ jobs:
run: dotnet restore
- name: Build and test
run: |
dotnet test --configuration Release --no-restore
dotnet test --configuration ${{ matrix.configuration }} --no-restore
build-and-test:
needs: [build-and-tests]
Expand Down

0 comments on commit 3bae3db

Please sign in to comment.