Skip to content

Commit

Permalink
[ci] Add automated testing for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
gruenich committed Nov 25, 2023
1 parent ab7beae commit b6db350
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,20 @@ jobs:

- name: Test
run: ctest --test-dir build --output-on-failure

test-windows:
name: Windows build and test
runs-on: windows-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Configure
run: cmake -B build

- name: Build
run: cmake --build build

- name: Test
run: ctest --test-dir build --output-on-failure

0 comments on commit b6db350

Please sign in to comment.