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