File tree 3 files changed +46
-9
lines changed
3 files changed +46
-9
lines changed Original file line number Diff line number Diff line change 22
22
config :
23
23
- {os: macos-latest, r: 'release'}
24
24
- {os: windows-latest, r: 'release'}
25
- - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
26
- - {os: ubuntu-latest, r: 'release'}
27
- - {os: ubuntu-latest, r: 'oldrel-1'}
25
+ # - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
26
+ # - {os: ubuntu-latest, r: 'release'}
27
+ # - {os: ubuntu-latest, r: 'oldrel-1'}
28
28
29
29
env :
30
30
GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change
1
+ # Run CI for R using https://eddelbuettel.github.io/r-ci/
2
+
3
+ name : ci
4
+
5
+ on :
6
+ push :
7
+ pull_request :
8
+
9
+ env :
10
+ _R_CHECK_FORCE_SUGGESTS_ : " false"
11
+
12
+ jobs :
13
+ ci :
14
+ strategy :
15
+ matrix :
16
+ include :
17
+ # - {os: macOS-latest}
18
+ - {os: ubuntu-latest}
19
+
20
+ runs-on : ${{ matrix.os }}
21
+
22
+ steps :
23
+ - name : Checkout
24
+ uses : actions/checkout@v4
25
+
26
+ - name : Setup
27
+ uses : eddelbuettel/github-actions/r-ci@master
28
+
29
+ - name : Dependencies
30
+ run : ./run.sh install_all
31
+
32
+ - name : Test
33
+ run : ./run.sh run_tests
34
+
35
+ # - name: Coverage
36
+ # if: ${{ matrix.os == 'ubuntu-latest' }}
37
+ # run: ./run.sh coverage
Original file line number Diff line number Diff line change 1
1
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
2
2
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3
3
on :
4
- push :
5
- branches : [main, master]
6
- pull_request :
7
- branches : [main, master]
8
- release :
9
- types : [published]
4
+ # push:
5
+ # branches: [main, master]
6
+ # pull_request:
7
+ # branches: [main, master]
8
+ # release:
9
+ # types: [published]
10
10
workflow_dispatch :
11
11
12
12
name : pkgdown.yaml
You can’t perform that action at this time.
0 commit comments