Fix abtest bayesian #11
Workflow file for this run
This file contains hidden or 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
| # .github/workflows/test-coverage.yml | |
| on: | |
| push: | |
| branches: | |
| - master # Essential for Codecov baseline | |
| paths: ['**.R', 'tests/**', '**.c', '**.cpp', '**.h', '**.hpp', | |
| 'DESCRIPTION', 'NAMESPACE', 'MAKEVARS', 'MAKEVARS.win', '**.yml'] | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| paths: ['**.R', 'tests/**', '**.c', '**.cpp', '**.h', '**.hpp', | |
| 'DESCRIPTION', 'NAMESPACE', 'MAKEVARS', 'MAKEVARS.win'] | |
| jobs: | |
| coverage: | |
| # Run on push (merge) OR if the PR is NOT a draft | |
| if: github.event_name == 'push' || github.event.pull_request.draft == false | |
| uses: jasp-stats/jasp-actions/.github/workflows/coverage.yml@master | |
| with: | |
| needs_JAGS: false | |
| secrets: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |