Skip to content

Commit 8b0d8fb

Browse files
committed
Add 'install and check openmp' step on macOS
1 parent 662c24b commit 8b0d8fb

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
include:
17-
#- {os: macOS-latest}
17+
- {os: macOS-latest}
1818
- {os: ubuntu-latest}
1919

2020
runs-on: ${{ matrix.os }}
@@ -32,6 +32,12 @@ jobs:
3232
- name: Test
3333
run: ./run.sh run_tests
3434

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+
3541
- name: Coverage
3642
if: ${{ matrix.os == 'ubuntu-latest' }}
3743
env:

0 commit comments

Comments
 (0)