From 6c645363b315da9a882d2934afa4477a70f3229b Mon Sep 17 00:00:00 2001 From: Ralph Lange Date: Mon, 15 Jun 2020 18:14:23 +0200 Subject: [PATCH] gh-actions: add vs2019 build on windows --- .github/workflows/build-and-test.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 691adbb..bbd1c78 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -15,11 +15,17 @@ env: jobs: build: - name: Build on gcc / ${{ matrix.os }} + name: Build on ${{ matrix.cmp }} / ${{ matrix.os }} runs-on: ${{ matrix.os }} + env: + CMP: ${{ matrix.cmp }} strategy: matrix: os: [ubuntu-18.04, ubuntu-16.04, windows-2019] + cmp: [gcc] + include: + - cmp: vs2019 + os: windows-2019 steps: - uses: actions/checkout@v2