Skip to content

chore: bump version 0.18.0 #144

chore: bump version 0.18.0

chore: bump version 0.18.0 #144

Workflow file for this run

on:
push:
paths-ignore:
- "*.md"
- "*.Rmd"
- "man/figures/README*"
- ".vscode/**"
- "bin/**"
branches:
- main
- release/*
- hotfix/*
pull_request:
branches:
- develop
- release/*
- hotfix/*
paths-ignore:
- "*.md"
- "*.Rmd"
- ".vscode/**"
- "bin/**"
workflow_dispatch:
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", lc-ctype: "en_US.UTF-8" }
- { os: ubuntu-latest, r: "oldrel-1", lc-ctype: "C.UTF-8" }
- { os: ubuntu-latest, r: "release", lc-ctype: "C.UTF-8" }
- { os: ubuntu-latest, r: "devel", http-user-agent: "release", lc-ctype: "C.UTF-8" }
- { os: windows-latest, r: "oldrel-1", lc-ctype: "German_Germany.utf8" }
- { os: windows-latest, r: "release", lc-ctype: "German_Germany.utf8" }
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
steps:
# https://github.com/actions/checkout
- uses: actions/checkout@v4
# https://github.com/r-lib/actions/tree/v2/setup-pandoc
- uses: r-lib/actions/setup-pandoc@v2
# https://github.com/r-lib/actions/tree/v2/setup-r
- 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
# https://github.com/r-lib/actions/tree/v2/setup-r-dependencies
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
needs: check
# https://github.com/r-lib/actions/tree/v2/check-r-package
- uses: r-lib/actions/check-r-package@v2
env:
LC_CTYPE: ${{ matrix.config.lc-ctype }}
with:
upload-snapshots: true
args: 'c("--no-manual", "--as-cran")'