Use box linters #977
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
main: | |
name: Check, lint & test - ${{ matrix.config.os }} (${{ matrix.config.r }}) | |
runs-on: ${{ matrix.config.os }} | |
timeout-minutes: 30 | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- {os: macOS-latest, r: 'release'} | |
- {os: windows-latest, r: 'release'} | |
- {os: ubuntu-22.04, r: 'devel'} | |
- {os: ubuntu-22.04, r: 'release'} | |
- {os: ubuntu-22.04, r: 'oldrel'} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install R | |
uses: r-lib/actions/setup-r@v2 | |
with: | |
r-version: '4.2.2' | |
use-public-rspm: true | |
- name: Install R package dependencies | |
uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
extra-packages: local::. # Necessary to avoid object usage linter errors. | |
- name: R CMD check | |
if: always() | |
uses: r-lib/actions/check-r-package@v2 | |
with: | |
error-on: '"note"' | |
- name: Lint | |
if: always() | |
shell: Rscript {0} | |
run: | | |
lints <- lintr::lint_package() | |
for (lint in lints) print(lint) | |
quit(status = length(lints) > 0) | |
- name: Test | |
if: always() | |
shell: Rscript {0} | |
run: | | |
# Errors will fail this step automatically. | |
tests <- testthat::test_local() | |
# Escalate warnings to a failure too. | |
expectations <- | |
lapply(tests, function(test) { | |
lapply(test$results, class) | |
}) |> | |
unlist() | |
warnings_found <- any(grepl("expectation_warning", expectations)) | |
quit(status = warnings_found) | |
- name: Test coverage | |
if: always() | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
shell: Rscript {0} | |
run: covr::codecov() | |
- name: Spell check | |
if: always() | |
shell: Rscript {0} | |
run: | | |
spell_check <- spelling::spell_check_package(use_wordlist = TRUE) | |
cli::cli_alert_warning("There are {nrow(spell_check)} spelling error{?s}.") | |
if (nrow(spell_check) > 0) { | |
print(spell_check) | |
} | |
quit(status = nrow(spell_check) > 0) |