Skip to content

updated paper-figurepack with new baseline VARs #21

updated paper-figurepack with new baseline VARs

updated paper-figurepack with new baseline VARs #21

on:
push:
paths:
- code/vfciBCHelpers/**
workflow_dispatch:
name: Check vfciBCHelpers
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'}
- {os: windows-latest, r: 'release'}
- {os: ubuntu-latest, r: 'release'}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
steps:
- uses: actions/checkout@v4
- 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
- name: Run R CMD Check
run: |
Rscript -e 'renv::install(c("devtools", "bvartools", "data.table", "tidyfast", "vars")); renv::install("vfci/fevdid"); devtools::check("./code/vfciBCHelpers")'