File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,18 @@ jobs:
16
16
# well on Windows or Mac. You can convert this to a matrix build if you need
17
17
# cross-platform coverage.
18
18
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
19
- runs-on : ubuntu-latest
20
-
19
+ strategy :
20
+ os : [ubuntu-latest, macos-latest]
21
+
22
+ runs-on : ${{ matrix.os }}
23
+
21
24
steps :
22
25
- uses : actions/checkout@v2
26
+
27
+ - name : Install packages (macOS)
28
+ if : contains(matrix.os,'macos')
29
+ run : |
30
+ brew update || brew install lcov || gem install coveralls-lcov
23
31
24
32
- name : Configure CMake
25
33
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
You can’t perform that action at this time.
0 commit comments