File tree Expand file tree Collapse file tree 1 file changed +3
-21
lines changed Expand file tree Collapse file tree 1 file changed +3
-21
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ permissions:
17
17
pages : write
18
18
19
19
jobs :
20
- install-py-reqs :
21
- name : Install Python Requirements
20
+ run-everything :
21
+ name : run everything all at once
22
22
runs-on : ubuntu-latest
23
23
steps :
24
24
@@ -43,37 +43,19 @@ jobs:
43
43
- name : Install Python requirements
44
44
run : pip install -r requirements.txt
45
45
46
- install-r-reqs :
47
- name : Install R Requirements
48
- runs-on : ubuntu-latest
49
- needs : install-py-reqs
50
-
51
- steps :
52
- - name : checkout code
53
- uses : actions/checkout@v4
54
- with :
55
- fetch-depth : 0
56
- ref : dev
57
46
- name : debug env
58
47
run : |
59
48
echo "current wkdir:"
60
49
pwd
61
50
echo "files in dir"
62
51
ls -a
52
+
63
53
- name : Set up R
64
54
uses : r-lib/actions/setup-r@v2
65
55
66
56
- name : Install R requirements
67
57
run : Rscript R_requirements.R
68
58
69
- run-orchestrator :
70
- name : Run Orchestrator
71
- runs-on : ubuntu-latest
72
- needs : install-r-reqs
73
- steps :
74
- - name : Checkout code
75
- uses : actions/checkout@v4
76
-
77
59
- name : Run orchestrator script
78
60
run : |
79
61
current_date=$(date +"%Y-%m-%d")
You can’t perform that action at this time.
0 commit comments