Remove old leftover commented-out code #26
This file contains 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
name: testing | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
testing: | |
runs-on: ${{ matrix.config.os }} | |
name: ${{ matrix.config.os }} (${{ matrix.config.quarto }}) | |
env: | |
_R_CHECK_FORCE_SUGGESTS_: "false" | |
_R_CHECK_TESTS_NLINES_: 0 | |
R_NOT_CRAN: true | |
R_GH: true | |
GITHUB_PAT: ${{ secrets.GITHUB_PAT }} | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- { os: windows-latest, r: "release", quarto: "" } | |
- { os: macOS-latest, r: "release", quarto: "" } | |
- { os: ubuntu-latest, r: "release", quarto: "" } | |
- { os: ubuntu-latest, r: "release", quarto: "pre-release" } | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Quarto (pre-release) | |
if: matrix.config.quarto != '' | |
uses: quarto-dev/quarto-actions/setup@v2 | |
with: | |
version: ${{ matrix.config.quarto }} | |
- name: Set up Quarto (latest version) | |
if: matrix.config.quarto == '' | |
uses: quarto-dev/quarto-actions/setup@v2 | |
- name: Set up R | |
uses: r-lib/actions/setup-r@v2 | |
with: | |
use-public-rspm: true | |
- name: Set up R dependencies | |
uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
cache-version: 1 | |
- name: Test extension | |
run: Rscript -e "testthat::test_dir(path = 'tests/testthat')" |