From 3bae3db8f0e7cc75685a01f1687c0cb6eb13a53c Mon Sep 17 00:00:00 2001 From: Moreal Date: Wed, 17 May 2023 14:32:44 +0900 Subject: [PATCH] ci(gh-actions): build and test with DevEx configuration too --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ec9a4fddc..e0deffd04 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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]