Skip to content

Commit 730d445

Browse files
committed
new GH action
1 parent 0826da0 commit 730d445

File tree

3 files changed

+23
-132
lines changed

3 files changed

+23
-132
lines changed

‎.github/workflows/R-CMD-check.yaml‎

Lines changed: 0 additions & 84 deletions
This file was deleted.

‎.github/workflows/pkgcheck.yaml‎

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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‎

Lines changed: 0 additions & 48 deletions
This file was deleted.

0 commit comments

Comments
 (0)