Skip to content

Pksim installation vignette #52

Pksim installation vignette

Pksim installation vignette #52

Workflow file for this run

name: Main-Workflow
on:
push:
branches: [main]
pull_request:
jobs:
bump-dev-version: # only do that when actually merging in main/develop branch
if: github.event_name != 'pull_request'
uses: ./.github/workflows/bump-dev-version.yaml
secrets: inherit
update-core-files:
if: ${{ !cancelled() && github.event_name == 'pull_request' }}
needs: [bump-dev-version]
uses: ./.github/workflows/update-core-files.yaml
R-CMD-Check:
if: ${{ !cancelled() }}
needs: [update-core-files]
uses: ./.github/workflows/R-CMD-check.yaml
test-coverage:
if: ${{ !cancelled() }}
needs: [update-core-files]
uses: ./.github/workflows/test-coverage.yaml
pkgdown:
if: ${{ !cancelled() }}
needs: [update-core-files]
uses: ./.github/workflows/pkgdown.yaml