Skip to content

add CONTRIBUTING.md to .gitignore #3

add CONTRIBUTING.md to .gitignore

add CONTRIBUTING.md to .gitignore #3

Workflow file for this run

name: Run tests and check (ubuntu)
on:
push:
branches:
- main
- test-workflow
pull_request:
branches:
- main
- test-workflow
jobs:
test:
runs-on: ubuntu-latest
container:
image: ghcr.io/kss2k/container-modsem:latest
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GHCR_PAT }}
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Run tests
run: |
Rscript -e 'devtools::test(stop_on_failure = TRUE)'
- name: R CMD CHECK
run: |
Rscript -e 'devtools::check(error_on = "warning")'