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 bead956 commit daadc79Copy full SHA for daadc79
.github/workflows/cmake.yml
@@ -8,11 +8,14 @@ env:
8
9
jobs:
10
build:
11
+ strategy:
12
+ matrix:
13
+ platform: [ubuntu-latest, macos-latest, windows-latest]
14
# The CMake configure and build commands are platform agnostic and should work equally
15
# well on Windows or Mac. You can convert this to a matrix build if you need
16
# cross-platform coverage.
17
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
- runs-on: ubuntu-latest
18
+ runs-on: ${{ matrix.platform }}
19
20
steps:
21
- uses: actions/checkout@v2
0 commit comments