Merge pull request #128 from Appsilon/fix-usei18n-example #154
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
on: push | |
name: R-CMD-check | |
jobs: | |
main: | |
name: ${{ 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: ${{ matrix.config.r }} | |
- 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: Spell Check | |
if : always() | |
shell: Rscript {0} | |
run: | | |
spell_check <- spelling::spell_check_package(use_wordlist = TRUE) | |
if (nrow(spell_check) > 0) { | |
print(spell_check) | |
} | |
quit(status = nrow(spell_check) > 0) | |
- name: Test coverage | |
if: matrix.config.os == 'ubuntu-22.04' && matrix.config.r == 'release' | |
run: | | |
Rscript -e 'covr::codecov(token = "${{secrets.CODECOV_TOKEN}}")' |