No longer require #ifdef for UNWIND_PROTECT, had been 'on' for long #405
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Run CI for R using https://eddelbuettel.github.io/r-ci/ | |
| name: macos | |
| on: | |
| push: | |
| pull_request: | |
| env: | |
| _R_CHECK_FORCE_SUGGESTS_: "false" | |
| jobs: | |
| ci: | |
| strategy: | |
| matrix: | |
| include: | |
| - {os: macos-latest} | |
| - {os: macos-14} | |
| #- {os: ubuntu-latest} | |
| #- {os: ubuntu-24.04-arm} | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup | |
| uses: eddelbuettel/github-actions/r-ci@master | |
| - name: Dependencies | |
| run: ./run.sh install_deps | |
| - name: Test | |
| run: ./run.sh run_tests | |
| #- name: Coverage | |
| # if: ${{ matrix.os == 'ubuntu-latest' }} | |
| # run: ./run.sh coverage |