Skip to content

Commit f3f87db

Browse files
author
Joonas Miettinen
committed
build: run dev/01_license_and_ci.R
1 parent de90a87 commit f3f87db

6 files changed

Lines changed: 35 additions & 4 deletions

File tree

.github/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.html

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

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Authors@R:
1010
Description: 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
1414
Encoding: UTF-8
1515
LazyData: true
1616
RoxygenNote: 6.1.1

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
YEAR: 2019
2-
COPYRIGHT HOLDER: Joonas Miettinen
1+
YEAR: 2023
2+
COPYRIGHT HOLDER: vbscript authors

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MIT License
22

3-
Copyright (c) 2019 Joonas Miettinen
3+
Copyright (c) 2023 vbscript authors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
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

78
Enables easy calling of vbscript files from R.

0 commit comments

Comments
 (0)