Fix proportion female #763
Workflow file for this run
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
# call a workflow that runs covr::codecov() to calculate code coverage | |
name: call-calc_coverage | |
# on specifies the build triggers. See more info at https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows | |
# The default is to run the workflow on every push or pull request to every branch. | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- .devcontainer | |
- .github | |
- 'LICENSE' | |
- 'README.md' | |
- 'CONTRIBUTING.md' | |
- 'Rbuildignore' | |
- '.gitignore' | |
- 'man' | |
pull_request: | |
branches: | |
- main | |
jobs: | |
call-workflow: | |
uses: nmfs-fish-tools/ghactions4r/.github/workflows/calc-coverage.yml@main | |
secrets: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |