File tree Expand file tree Collapse file tree 4 files changed +35
-0
lines changed Expand file tree Collapse file tree 4 files changed +35
-0
lines changed Original file line number Diff line number Diff line change 2
2
^\.Rproj\.user$
3
3
\.sublime-project$
4
4
\.sublime-workspace$
5
+ ^\.github$
Original file line number Diff line number Diff line change
1
+ * .html
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
+ on :
4
+ push :
5
+ branches : [main]
6
+ pull_request :
7
+ branches : [main]
8
+
9
+ name : R-CMD-check
10
+
11
+ jobs :
12
+ R-CMD-check :
13
+ runs-on : ubuntu-latest
14
+ env :
15
+ GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
16
+ R_KEEP_PKG_SOURCE : yes
17
+ steps :
18
+ - uses : actions/checkout@v3
19
+
20
+ - uses : r-lib/actions/setup-r@v2
21
+ with :
22
+ use-public-rspm : true
23
+
24
+ - uses : r-lib/actions/setup-r-dependencies@v2
25
+ with :
26
+ extra-packages : any::rcmdcheck
27
+ needs : check
28
+
29
+ - uses : r-lib/actions/check-r-package@v2
Original file line number Diff line number Diff line change
1
+ <!-- badges: start -->
2
+ [ ![ R-CMD-check] ( https://github.com/wch/Rttf2pt1/actions/workflows/R-CMD-check.yaml/badge.svg )] ( https://github.com/wch/Rttf2pt1/actions/workflows/R-CMD-check.yaml )
3
+ <!-- badges: end -->
4
+
1
5
# Rttf2pt1
2
6
3
7
The Rttf2p1 package for R is meant to be used with the [ extrafont] ( https://github.com/wch/extrafont ) package.
You can’t perform that action at this time.
0 commit comments