We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bef340 commit 2d75322Copy full SHA for 2d75322
.github/workflows/cmake.yml
@@ -12,7 +12,13 @@ jobs:
12
# well on Windows or Mac. You can convert this to a matrix build if you need
13
# cross-platform coverage.
14
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
15
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.config.os }} # we run many different builds
16
+ strategy:
17
+ matrix:
18
+ config:
19
+ - os: ubuntu-latest
20
+ - os: macos-latest
21
+ - os: windows-latest
22
23
steps:
24
- uses: actions/checkout@v2
0 commit comments