There was an error while loading. Please reload this page.
1 parent 0a18c55 commit ae7791eCopy full SHA for ae7791e
1 file changed
.github/workflows/slurm.yml
@@ -0,0 +1,23 @@
1
+name: Subset List Test
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+jobs:
7
+ setup-slurm:
8
+ name: Start Slurm Cluster
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v6
12
+ with:
13
+ repository: 'giovtorres/slurm-docker-cluster'
14
+ ref: '2.3.1'
15
+ - name: Build
16
+ run: |
17
+ cp .env.example .env
18
+ docker pull giovtorres/slurm-docker-cluster:25.11.4-2.3.1
19
+ make build
20
+ - name: Start cluster
21
+ run: make up
22
+ - name: Test cluster
23
+ run: make test
0 commit comments