We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e16928 commit ff87db9Copy full SHA for ff87db9
1 file changed
.github/workflows/minimal_usage_bash_init.yml
@@ -12,7 +12,7 @@ on:
12
# Declare default permissions as read only.
13
permissions: read-all
14
jobs:
15
- minimal_usage:
+ minimal_usage_bash_script:
16
runs-on: ${{ matrix.os }}
17
strategy:
18
matrix:
@@ -29,7 +29,12 @@ jobs:
29
- name: Test EESSI
30
run: |
31
module avail
32
- module list |& grep -q "EESSI/"
+ if ! module list |& grep -q "EESSI/"; then
33
+ echo "EESSI module is NOT loaded"
34
+ else
35
+ echo "EESSI module is loaded but shouldn't be"
36
+ exit 1
37
+ fi
38
shell: bash
39
- name: Test available repos
40
0 commit comments