File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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, master]
6+ pull_request :
7+ branches : [main, master]
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 @@ -10,7 +10,7 @@ Authors@R:
1010Description: Enables easy calling of vbscript files from R.
1111 This package can be used to automatically interact with GUIs in Windows
1212 when there is no other choice.
13- License: file LICENSE
13+ License: MIT + file LICENSE
1414Encoding: UTF-8
1515LazyData: true
1616RoxygenNote: 6.1.1
Original file line number Diff line number Diff line change 1- YEAR: 2019
2- COPYRIGHT HOLDER: Joonas Miettinen
1+ YEAR: 2023
2+ COPYRIGHT HOLDER: vbscript authors
Original file line number Diff line number Diff line change 11# MIT License
22
3- Copyright (c) 2019 Joonas Miettinen
3+ Copyright (c) 2023 vbscript authors
44
55Permission is hereby granted, free of charge, to any person obtaining a copy
66of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 22
33<!-- badges: start -->
44[ ![ AppVeyor build status] ( https://ci.appveyor.com/api/projects/status/github/WetRobot/vbscript?branch=master&svg=true )] ( https://ci.appveyor.com/project/WetRobot/vbscript )
5+ [ ![ R-CMD-check] ( https://github.com/FinnishCancerRegistry/vbscript/actions/workflows/R-CMD-check.yaml/badge.svg )] ( https://github.com/FinnishCancerRegistry/vbscript/actions/workflows/R-CMD-check.yaml )
56<!-- badges: end -->
67
78Enables easy calling of vbscript files from R.
You can’t perform that action at this time.
0 commit comments