update R-CMD-Check workflow 4 #28
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: | |
branches: [main, master] | |
pull_request: | |
branches: [main, master] | |
name: R-CMD-check | |
jobs: | |
R-CMD-check: | |
runs-on: ${{ matrix.config.os }} | |
name: ${{ matrix.config.os }} (${{ matrix.config.r }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- {os: macos-latest, r: 'release'} | |
- {os: windows-latest, r: 'release'} | |
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'} | |
- {os: ubuntu-latest, r: 'release'} | |
- {os: ubuntu-latest, r: 'oldrel-1'} | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
R_KEEP_PKG_SOURCE: yes | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: r-lib/actions/setup-pandoc@v2 | |
- uses: r-lib/actions/setup-r@v2 | |
with: | |
r-version: ${{ matrix.config.r }} | |
http-user-agent: ${{ matrix.config.http-user-agent }} | |
use-public-rspm: true | |
# Install lme4 from source; conditionally execute only on certain OS or R versions if necessary | |
- name: Install lme4 (from source) | |
run: | | |
Rscript -e 'install.packages("lme4", type = "source")' | |
- uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
extra-packages: any::rcmdcheck | |
needs: check | |
- uses: r-lib/actions/check-r-package@v2 | |
with: | |
upload-snapshots: true | |
# name: test-coverage | |
# | |
# jobs: | |
# test-coverage: | |
# runs-on: ubuntu-latest | |
# env: | |
# GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
# | |
# steps: | |
# - uses: actions/checkout@v3 | |
# | |
# - uses: r-lib/actions/setup-r@v2 | |
# with: | |
# use-public-rspm: true | |
# | |
# - uses: r-lib/actions/setup-r-dependencies@v2 | |
# with: | |
# needs: coverage | |
# | |
# - name: Setup | |
# run: | | |
# R CMD INSTALL . | |
# source shim_package.sh | |
# | |
# - name: Test coverage | |
# run: | | |
# covr::codecov( | |
# quiet = FALSE, | |
# clean = FALSE, | |
# install_path = file.path(Sys.getenv("RUNNER_TEMP"), "package") | |
# ) | |
# shell: Rscript {0} | |
# | |
# - name: Show testthat output | |
# if: always() | |
# run: | | |
# ## -------------------------------------------------------------------- | |
# find ${{ runner.temp }}/package -name 'testthat.Rout*' -exec cat '{}' \; || true | |
# shell: bash | |
# | |
# - name: Upload test results | |
# if: failure() | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# name: coverage-test-failures | |
# path: ${{ runner.temp }}/package | |