Fix residual calculation inconsistency between `plotResidualsVsCovari… #1172
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
| name: Main-Workflow | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: write-all | |
| jobs: | |
| bump-dev-version: # only do that when actually merging in main/develop branch | |
| if: github.event_name != 'pull_request' | |
| uses: Open-Systems-Pharmacology/Workflows/.github/workflows/bump_dev_version_tag_branch.yaml@main | |
| with: | |
| app-id: ${{ vars.VERSION_BUMPER_APPID }} | |
| secrets: | |
| private-key: ${{ secrets.VERSION_BUMPER_SECRET }} | |
| R-CMD-Check: | |
| if: ${{ !cancelled() }} | |
| needs: [bump-dev-version] | |
| uses: Open-Systems-Pharmacology/Workflows/.github/workflows/R-CMD-check-build.yaml@main | |
| test-coverage: | |
| if: ${{ !cancelled() }} | |
| needs: [bump-dev-version] | |
| uses: Open-Systems-Pharmacology/Workflows/.github/workflows/test-coverage.yaml@main | |
| secrets: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| pkgdown: | |
| if: ${{ !cancelled() }} | |
| needs: [bump-dev-version] | |
| uses: Open-Systems-Pharmacology/Workflows/.github/workflows/pkgdown.yaml@main |