Skip to content

re-arrange omp parallel region to make more efficient memory allocatt… #104

re-arrange omp parallel region to make more efficient memory allocatt…

re-arrange omp parallel region to make more efficient memory allocatt… #104

Workflow file for this run

# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: [master]
pull_request:
branches: [master]
name: R-CMD-check
jobs:
R-CMD-check:
runs-on: ubuntu-latest
name: (${{ matrix.config.r }})
strategy:
fail-fast: false
matrix:
config:
- {r: 'devel'}
# minimal required R version
- {r: '3.6.0'}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
steps:
- uses: actions/checkout@v3
- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck, any::Matrix
needs: check
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true