Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/R-CMD-check-occasional.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
on:
schedule:
- cron: '17 13 23 * *' # 23rd of month at 13:17 UTC
workflow_dispatch:

# A more complete suite of checks to run monthly; each PR/merge need not pass all these, but they should pass before CRAN release
name: R-CMD-check-occasional
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- master
pull_request:
workflow_dispatch:

name: R-CMD-check

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/code-quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ on:
push:
branches: [master]
pull_request:
workflow_dispatch:

name: code-quality

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/performance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
- 'R/**'
- 'src/**'
- '.ci/atime/**'
workflow_dispatch:

jobs:
comment:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/rchk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,14 @@
on:
push:
branches: [master]
paths:
- '.github/workflows/rchk.yaml'
- 'src/**'
pull_request:
paths:
- '.github/workflows/rchk.yaml'
- 'src/**'
workflow_dispatch:

name: 'rchk'

Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,20 @@
on:
push:
branches: [master]
paths:
- '.github/workflows/test-coverage.yaml'
- 'inst/tests/**'
- 'R/**'
- 'src/**'
- 'tests/**'
pull_request:
paths:
- '.github/workflows/test-coverage.yaml'
- 'inst/tests/**'
- 'R/**'
- 'src/**'
- 'tests/**'
workflow_dispatch:

name: test-coverage.yaml

Expand Down
Loading