Skip to content

fix typo in readme skip ci #191

fix typo in readme skip ci

fix typo in readme skip ci #191

Workflow file for this run

on: [push, pull_request]
name: R-linux
jobs:
check:
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
if: "!contains(github.event.head_commit.message, 'skip linux')"
strategy:
fail-fast: false
matrix:
config:
- {os: ubuntu-latest, r: 'release', http-user-agent: 'release', args: "--no-manual"}
env:
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
CRAN: ${{ matrix.config.cran }}
GITHUB_PAT: ${{secrets.GH_PAT}}
steps:
- uses: actions/checkout@v3
- uses: r-lib/actions/setup-tinytex@v2
- uses: r-lib/actions/setup-pandoc@v2
- 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: Install magick libs
run: |
sudo apt-get -qq update
sudo apt-get -y install libmagick++-dev potrace
sudo ldconfig /usr/local/lib
- name: install tex libs
run: |
install.packages('tinytex')
tinytex::tlmgr_install(c('standalone', 'xcolor', 'booktabs', 'multirow', 'amsmath', 'listings', 'setspace', 'caption', 'graphics', 'tools', 'psnfss', 'varwidth', 'colortbl', 'epstopdf-pkg', 'pgf','makeindex'))
shell: Rscript {0}
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
needs: check
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true