build: add always_run
to the create_tag script
#217
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
name: Continuous Integration / R Workflows | |
on: | |
workflow_dispatch: | |
push: | |
branches-ignore: | |
- master | |
- main | |
- RELEASE_** | |
pull_request: | |
branches: | |
- master | |
- main | |
- RELEASE_** | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
rworkflows: | |
runs-on: ${{ matrix.config.os }} | |
name: ${{ matrix.config.os }} (${{ matrix.config.r }}) | |
container: ${{ matrix.config.cont }} | |
strategy: | |
fail-fast: ${{ false }} | |
matrix: | |
config: | |
- os: ubuntu-latest | |
bioc: devel | |
r: auto | |
cont: bioconductor/bioconductor_docker:devel | |
rspm: https://packagemanager.rstudio.com/cran/__linux__/focal/release | |
- os: macOS-latest | |
bioc: devel | |
r: auto | |
- os: windows-latest | |
bioc: devel | |
r: auto | |
steps: | |
- uses: neurogenomics/rworkflows@master | |
with: | |
run_bioccheck: ${{ true }} | |
run_rcmdcheck: ${{ true }} | |
as_cran: ${{ true }} | |
run_vignettes: ${{ true }} | |
has_testthat: ${{ true }} | |
run_covr: ${{ false }} | |
run_pkgdown: ${{ false }} | |
has_runit: ${{ false }} | |
has_latex: ${{ false }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run_docker: ${{ false }} | |
runner_os: ${{ runner.os }} | |
cache_version: cache-v1 |