We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5ad93a commit 8f38c48Copy full SHA for 8f38c48
1 file changed
.github/workflows/CI.yml
@@ -19,7 +19,7 @@ jobs:
19
- uses: actions/checkout@v4
20
- id: set-matrix
21
run: |
22
- echo "::set-output name=matrix::{\"node\":[$(python getter.py)]}"
+ echo "matrix={\"node\":[$(python getter.py)]}" >> $GITHUB_ENV
23
job2:
24
needs:
25
- job1
@@ -28,6 +28,7 @@ jobs:
28
strategy:
29
fail-fast: false
30
matrix: ${{fromJSON(needs.job1.outputs.matrix)}}
31
+ timeout-minutes: 30
32
steps:
33
34
- name: "Set up Julia"
0 commit comments