Skip to content

New function: power_lifter and various documentation updates #28

New function: power_lifter and various documentation updates

New function: power_lifter and various documentation updates #28

Workflow file for this run

name: BiomaesteR Build Check and Tests
on:
pull_request:
branches: [main]
jobs:
build-check-tests:
runs-on: ubuntu-latest
steps:
- name: Set up R
uses: r-lib/actions/setup-r@v2
- name: Install packages
uses: r-lib/actions/setup-r-dependencies@v2
with:
packages: |
any::devtools
- name: Check out repository
uses: actions/checkout@v3
- name: Get biocmanager packages
run: Rscript -e "install.packages('BiocManager')"
run: Rscript -e "BiocManager::install(c("GenomicRanges","rtracklayer"))"

Check failure on line 25 in .github/workflows/build_test.yml

View workflow run for this annotation

GitHub Actions / BiomaesteR Build Check and Tests

Invalid workflow file

The workflow is not valid. .github/workflows/build_test.yml (Line: 25, Col: 9): 'run' is already defined
- name: Build package
run: Rscript -e "devtools::install()"
- name: Check package
run: Rscript -e "devtools::check(vignettes = FALSE)"
- name: Run unit tests
run: Rscript -e "devtools::test()"