Skip to content

Update metadata

Update metadata #37

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
#
# See https://github.com/r-lib/actions/tree/master/examples#readme for
# additional example workflows available for the R community.
name: R
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.config.os }}
strategy:
matrix:
config:
- {os: macOS-latest, r: 'release'}
- {os: ubuntu-latest, r: 'release'}
- {os: ubuntu-latest, r: 'devel'}
- {os: ubuntu-latest, r: '3.6'}
steps:
- uses: actions/checkout@v3
- name: Set up R ${{ matrix.config.r }}
uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
- name: Set up pandoc
uses: r-lib/actions/setup-pandoc@v2
with:
pandoc-version: '2.7.3'
- run: echo "# Test" | pandoc -t html
- name: Linux setup
if: runner.os == 'Linux'
run: |
sudo apt-get install libcurl4-openssl-dev
sudo apt-get install jags
- name: mac setup
if: runner.os == 'macOS'
run: |
brew install jags
- name: Install dependencies
uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
needs: check
- name: Check
uses: r-lib/actions/check-r-package@v2