ignore-before-r does not work well for knitr and rmarkdown dependency #204
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
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples | |
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | |
on: | |
push: | |
branches: [main, master, 'hotfix/*', 'release/*', develop] | |
pull_request: | |
branches: [main, master, 'hotfix/*', 'release/*', develop] | |
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'} | |
# Use 3.6 to trigger usage of RTools35 | |
- {os: windows-latest, r: '3.6'} | |
# use 4.1 to check with rtools40's older compiler | |
- {os: windows-latest, r: '4.1'} | |
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'} | |
- {os: ubuntu-latest, r: 'release'} | |
- {os: ubuntu-latest, r: 'oldrel-1'} | |
- {os: ubuntu-latest, r: 'oldrel-2'} | |
- {os: ubuntu-latest, r: 'oldrel-3'} | |
- {os: ubuntu-latest, r: 'oldrel-4'} | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
R_KEEP_PKG_SOURCE: yes | |
steps: | |
- uses: actions/checkout@v4 | |
- 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 | |
- name: Determine evaluate package version on Windows | |
if: runner.os == 'Windows' | |
run: | | |
if ($Env:MATRIX_CONFIG_R -lt "4.0.0") { | |
echo "[email protected]" >> $Env:GITHUB_ENV | |
} else { | |
echo "EVALUATE_PKG=evaluate" >> $Env:GITHUB_ENV | |
} | |
shell: pwsh | |
- name: Determine evaluate package version on non-Windows | |
if: runner.os != 'Windows' | |
run: | | |
if [ "${{ matrix.config.r }}" \< "4.0.0" ]; then | |
echo "[email protected]" >> $GITHUB_ENV | |
else | |
echo "EVALUATE_PKG=evaluate" >> $GITHUB_ENV | |
fi | |
shell: bash | |
- uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
extra-packages: any::rcmdcheck, ${{ env.EVALUATE_PKG }} | |
needs: check | |
# do not build vignettes in github actions check and ignore warnings | |
- uses: r-lib/actions/check-r-package@v2 | |
with: | |
args: 'c("--no-manual", "--as-cran", "--no-build-vignettes", "--no-examples")' | |
build_args: 'c("--no-manual", "--no-build-vignettes")' | |
error-on: '"error"' | |
check-dir: '"check"' | |
upload-snapshots: false | |
upload-results: false | |
# do not upload artifact until changing to public repo | |
# When public repo -> uncomment below | |
# - name: Upload check results | |
# if: failure() | |
# uses: actions/upload-artifact@main | |
# with: | |
# name: ${{ runner.os }}-r${{ matrix.config.r }}-results | |
# path: check |