Add a python version #298
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
# 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'} | |
- {os: windows-latest, r: 'oldrel-4'} | |
- {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'} | |
- {os: ubuntu-latest, r: '3.6'} | |
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 "EVALUATE_PKG=evaluate@0.23" >> $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 "EVALUATE_PKG=evaluate@0.23" >> $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 }} | |
# extra-packages: > | |
# any::rcmdcheck, | |
# knitr=?ignore-before-r=4.0.0, | |
# rmarkdown=?ignore-before-r=4.0.0, | |
# testthat=?ignore-before-r=4.0.0 | |
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-vignettes", "--no-build-vignettes", "--ignore-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 |