From 1426dfed8860f8953b6406733b9de7a3ae8af29b Mon Sep 17 00:00:00 2001 From: fallenoak Date: Tue, 1 Dec 2020 17:14:38 -0600 Subject: [PATCH] chore(build): add windows-latest to build matrix --- .github/workflows/push.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 6b1396d..9dbdf1b 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -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 }}