-
Notifications
You must be signed in to change notification settings - Fork 3
32 lines (29 loc) · 853 Bytes
/
Copy pathpkgcheck.yaml
File metadata and controls
32 lines (29 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: pkgcheck
# This will cancel running jobs once a new run is triggered
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
on:
# Manually trigger the Action under Actions/pkgcheck
workflow_dispatch:
# Run after other checks
workflow_run:
workflows: ["R-CMD-check", "test-coverage.yaml", "check-html5", "render-readme"]
types:
- completed
jobs:
pkgcheck:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
RUN_JAVA_DOWNLOAD_TESTS: "TRUE"
RUN_JAVA_DOWNLOAD_TESTS_QUIET: "FALSE"
RUN_JAVA_DOWNLOAD_TESTS_QUIET_DOWNLOAD: "TRUE"
permissions:
contents: read
issues: write
pull-requests: write
actions: read
steps:
- uses: actions/checkout@v4
- uses: ropensci-review-tools/pkgcheck-action@main