File tree 2 files changed +15
-2
lines changed
2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change
1
+ # Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
2
+ # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3
+ #
4
+ # NOTE: This workflow is overkill for most R packages and
5
+ # check-standard.yaml is likely a better choice.
6
+ # usethis::use_github_action("check-standard") will install it.
7
+ on :
8
+ push :
9
+ branches : [main, master]
10
+
11
+ name : R-CMD-check
12
+
13
+ jobs :
14
+ R-CMD-check :
15
+ uses : easystats/workflows/.github/workflows/R-CMD-check-main.yaml@main
Original file line number Diff line number Diff line change 5
5
# check-standard.yaml is likely a better choice.
6
6
# usethis::use_github_action("check-standard") will install it.
7
7
on :
8
- push :
9
- branches : [main, master]
10
8
pull_request :
11
9
branches : [main, master]
12
10
You can’t perform that action at this time.
0 commit comments