diff --git a/workflows/phs_package_checks.yaml b/workflows/phs_package_checks.yaml new file mode 100644 index 0000000..ab8a1d4 --- /dev/null +++ b/workflows/phs_package_checks.yaml @@ -0,0 +1,25 @@ +# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples +# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help +on: + workflow_call: + +name: phs_package_checks.yaml + +permissions: read-all + +jobs: + Style: + uses: ./.github/workflows/style.yaml + permissions: read-all + secrets: inherit + + Document: + uses: ./.github/workflows/document.yaml + permissions: read-all + secrets: inherit + + R-CMD-check: + needs: [Style, Document] + uses: ./.github/workflows/phs_R-CMD-check.yaml + permissions: read-all + secrets: inherit