File tree Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Original file line number Diff line number Diff line change 1+ version : 2
2+ updates :
3+ - package-ecosystem : " github-actions"
4+ directory : " /"
5+ schedule :
6+ interval : " monthly"
7+ open-pull-requests-limit : 100
8+ labels :
9+ - " dependencies"
10+ - " github-actions"
Original file line number Diff line number Diff line change 77 - master
88 - develop
99
10+ permissions :
11+ contents : read
12+
1013jobs :
1114 test :
1215 runs-on : ubuntu-latest
16+ timeout-minutes : 20
1317 strategy :
1418 fail-fast : false
1519 matrix :
@@ -21,14 +25,19 @@ jobs:
2125 - ' 1.10.7' # current LTS
2226 - ' 1.11.2' # currently the latest stable release
2327 steps :
24- - uses : actions/checkout@v2
28+ - uses : actions/checkout@v4
29+ with :
30+ persist-credentials : false
31+
2532 - name : Setup Docker
2633 run : |
2734 docker version
2835 docker compose version
29- docker build --build-arg JULIA_VERSION=${{matrix.version}} -t slurm-cluster-julia -f ci/Dockerfile .
36+ docker build --build-arg JULIA_VERSION="${MATRIX_VERSION:?}" -t slurm-cluster-julia -f ci/Dockerfile .
3037 docker compose -f ci/docker-compose.yml up -d
3138 docker ps
39+ env :
40+ MATRIX_VERSION : ${{matrix.version}}
3241 - name : Test Docker
3342 run : |
3443 docker exec -t slurmctld julia --version
You can’t perform that action at this time.
0 commit comments