Skip to content

Update download routine to work with small region (Special Projects) … #90

Update download routine to work with small region (Special Projects) …

Update download routine to work with small region (Special Projects) … #90

Workflow file for this run

# For help debugging build failures open an issue on the RStudio community with the 'github-actions' tag.
# https://community.rstudio.com/new-topic?category=Package%20development&tags=github-actions
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: ubuntu-22.04, r: 'release'}
env:
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
RSPM: ${{ matrix.config.rspm }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- run: sudo apt-get update
- run: sudo apt install -y libcurl4-openssl-dev chromium-chromedriver firefox
## use firefox now
# - run: wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
# - run: sudo apt install ./google-chrome-stable_current_amd64.deb
# - run: rm ./google-chrome-stable_current_amd64.deb
- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
- uses: r-lib/actions/setup-pandoc@v2
- 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