Skip to content

Update some URLs

Update some URLs #20

Workflow file for this run

name: Linux Distros
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
rhel:
runs-on: ubuntu-24.04${{matrix.arch=='arm64' && '-arm' || ''}}
name: ${{ matrix.distro }} ${{ matrix.arch }}
strategy:
fail-fast: false
matrix:
distro: ['ubuntu-20.04', 'ubuntu-22.04', 'debian-10', 'debian-11', 'debian-12', 'debian-13', 'debian-14']
#arch: [ 'amd64', 'arm64' ]
arch: [ 'amd64' ]
container:
image: ghcr.io/r-devel/${{ matrix.distro }}:latest
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck, *=?ignore-unavailable
needs: check
- uses: r-lib/actions/check-r-package@v2
with:
args: '"--no-manual"'
error-on: '"error"'
env:
NOT_CRAN: false
_R_CHECK_DOC_SIZES_: FALSE
LANG: en_US.UTF-8