forked from PecanProject/pecan
-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (42 loc) · 853 Bytes
/
ci-weekly.yml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Weekly Checks
on:
# every Monday at 4:30 AM
# (hopefully after the 1:30 AM `depends` build has completed)
schedule:
- cron: '30 4 * * 1'
workflow_dispatch:
jobs:
test:
strategy:
fail-fast: false
matrix:
R:
- "4.3"
- "devel"
uses: ./.github/workflows/test.yml
with:
R-version: ${{ matrix.R }}
secrets: inherit
check:
strategy:
fail-fast: false
matrix:
R:
- "4.3"
- "devel"
uses: ./.github/workflows/check.yml
with:
R-version: ${{ matrix.R }}
make-grouping: "check"
secrets: inherit
sipnet:
strategy:
fail-fast: false
matrix:
R:
- "4.3"
- "devel"
uses: ./.github/workflows/sipnet.yml
with:
R-version: ${{ matrix.R }}
secrets: inherit