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

This commit is contained in:
fallenoak 2020-12-01 17:14:38 -06:00
parent 385c46807b
commit 1426dfed88
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D

View file

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