chore(build): add windows-latest to build matrix

This commit is contained in:
fallenoak 2020-11-30 23:57:06 -06:00
parent e1712d34aa
commit c03a90f383
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D

View file

@ -17,15 +17,24 @@ jobs:
- name: Ubuntu Latest (GCC) - name: Ubuntu Latest (GCC)
os: ubuntu-latest os: ubuntu-latest
build_type: Release build_type: Release
test_path: StormTest
cc: gcc cc: gcc
cxx: g++ cxx: g++
- name: macOS Latest (Clang) - name: macOS Latest (Clang)
os: macos-latest os: macos-latest
build_type: Release build_type: Release
test_path: StormTest
cc: clang cc: clang
cxx: clang++ cxx: clang++
- name: Windows Latest (MSVC)
os: windows-latest
build_type: Release
test_path: Release/StormTest
cc: cl
cxx: cl
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
@ -39,4 +48,4 @@ jobs:
run: cmake --build build --config ${{ matrix.config.build_type }} run: cmake --build build --config ${{ matrix.config.build_type }}
- name: Test - name: Test
run: ./build/test/StormTest run: ./build/test/${{ matrix.config.test_path }}