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 662c24b commit 8b0d8fbCopy full SHA for 8b0d8fb
.github/workflows/ci.yaml
@@ -14,7 +14,7 @@ jobs:
14
strategy:
15
matrix:
16
include:
17
- #- {os: macOS-latest}
+ - {os: macOS-latest}
18
- {os: ubuntu-latest}
19
20
runs-on: ${{ matrix.os }}
@@ -32,6 +32,12 @@ jobs:
32
- name: Test
33
run: ./run.sh run_tests
34
35
+ - name: Install and Verify on macOS
36
+ if: ${{ matrix.os == 'macOS-latest' }}
37
+ run: |
38
+ R CMD INSTALL .
39
+ Rscript -e 'RcppEigen::EigenNbThreads()'
40
+
41
- name: Coverage
42
if: ${{ matrix.os == 'ubuntu-latest' }}
43
env:
0 commit comments