Remove vendor and outbound links #184
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: test-package | |
on: | |
push: | |
branches: [main, master] | |
pull_request: | |
branches: [main, master] | |
jobs: | |
run-test-that: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: r-lib/actions/setup-r@v2 | |
with: | |
r-version: '4.2.2' | |
- name: Install cURL Headers | |
run: | | |
sudo apt-get update | |
sudo apt-get -y install libcurl4-openssl-dev libharfbuzz-dev libfribidi-dev libgeos-dev | |
# name: Install required packages not listed in the package description | |
# run: | | |
# install.packages(c("BiocManager", "caret", "Seurat", "tidyverse")) | |
# BiocManager::install(version = "3.16") | |
# BiocManager::install(c('scran', 'scuttle', 'scater')) | |
# 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: | |
error-on: '"error"' |