Skip to content

Commit ae7791e

Browse files
committed
add workflow to test slurm cluster
1 parent 0a18c55 commit ae7791e

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/slurm.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)