We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0826da0 commit 730d445Copy full SHA for 730d445
.github/workflows/R-CMD-check.yaml
.github/workflows/pkgcheck.yaml
@@ -0,0 +1,23 @@
1
+name: pkgcheck
2
+
3
+# This will cancel running jobs once a new run is triggered
4
+concurrency:
5
+ group: ${{ github.workflow }}-${{ github.head_ref }}
6
+ cancel-in-progress: true
7
8
+on:
9
+ # Manually trigger the Action under Actions/pkgcheck
10
+ workflow_dispatch:
11
+ # Run on every push to main
12
+ push:
13
+ branches:
14
+ - main
15
+ - master
16
17
+jobs:
18
+ pkgcheck:
19
+ runs-on: ubuntu-latest
20
+ permissions:
21
+ issues: write
22
+ steps:
23
+ - uses: ropensci-review-tools/pkgcheck-action@main
.github/workflows/test-coverage.yaml
0 commit comments