We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b8cbd2 commit 980c4cbCopy full SHA for 980c4cb
1 file changed
.github/workflows/ci.yml
@@ -4,10 +4,16 @@ on: [push, pull_request]
4
5
jobs:
6
build:
7
- runs-on: ubuntu-latest
+ strategy:
8
+ matrix:
9
+ os: [ubuntu-latest, windows-latest]
10
+ runs-on: ${{ matrix.os }}
11
steps:
- - uses: actions/checkout@v2
- - name: Build
- run: make
12
- - name: Test
13
- run: make check
+ - name: Checkout
+ uses: actions/checkout@v2.0.0
14
+
15
+ - name: Build & Test
16
+ uses: nicledomaS/cmake_build_action@v1.4
17
+ with:
18
+ run_tests: ON
19
+ config: RelWithDebInfo
0 commit comments