Skip to content

Commit f485256

Browse files
committed
simple workflow to load EESSI, determine number of modules and run a python code
1 parent f3b82c5 commit f485256

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Minimal usage
2+
on: [push, pull_request]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: eessi/github-action-eessi@v3
8+
- name: Test EESSI
9+
run: |
10+
module avail 2>&1 | wc -l
11+
shell: bash
12+
- name: Checkout repo
13+
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
14+
- name: Run UQ example
15+
run: |
16+
module load Python
17+
which python
18+
python uq-in-python.py
19+
shell: bash

0 commit comments

Comments
 (0)