-
Notifications
You must be signed in to change notification settings - Fork 3
33 lines (33 loc) · 870 Bytes
/
check.yaml
File metadata and controls
33 lines (33 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Check Task View
on:
push:
paths:
- '.github/workflows/check.yaml'
- 'ci/**'
- 'ReproducibleResearch.md'
pull_request:
paths:
- '.github/workflows/check.yaml'
- 'ci/**'
- 'ReproducibleResearch.md'
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-22.04
name: Check Task View
steps:
- uses: actions/checkout@v4
- name: Setup r2u
uses: eddelbuettel/github-actions/r2u-setup@master
with:
bspm-version-check: "FALSE"
- name: Install dependencies
run: sudo bash ci/install-dependencies.sh
- name: Check Task View
run: Rscript ci/check.R
- name: Upload HTML as artifact
uses: actions/upload-artifact@v4
with:
name: ReproducibleResearch.html
path: ReproducibleResearch.html
retention-days: 5