Skip to content

Commit

Permalink
Create phs_package_checks.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Moohan authored Aug 8, 2024
1 parent eaf4f8c commit 76da562
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions workflows/phs_package_checks.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 76da562

Please sign in to comment.