-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (43 loc) · 977 Bytes
/
docker.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
47
---
on:
pull_request:
types:
- opened
- reopened
- synchronize
- closed
push:
branches: [main]
schedule:
- cron: '0 0 * * 1,2,3,4,5'
workflow_dispatch:
name: docker
jobs:
docker:
name: Docker actions
uses: RMI-PACTA/actions/.github/workflows/docker.yml@main
with:
do-check-r-sysdeps: false
test:
name: Test
uses: ./.github/workflows/test.yml
needs: [docker]
secrets: inherit
strategy:
fail-fast: false
matrix:
config-name:
- default_2022Q4
- default_2023Q4
- full_params_2022Q4
- full_params_2023Q4
with:
full-image-name: ${{ needs.docker.outputs.full-image-name }}
config-name: ${{ matrix.config-name }}
# gh-pages:
# name: gh-pages
# uses: ./.github/workflows/gh-pages.yml
# needs: [docker]
# secrets: inherit
# with:
# full-image-name: ${{ needs.docker.outputs.full-image-name }}