summaryrefslogtreecommitdiffstats
path: root/.devcontainer/act4e-check
blob: d4fd9e7f664a57a66d23cedb9523cf67fde78160 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
set -eux 
if [ $# -eq 0 ]
  then
    act4e-test --collections act4e_checks --module act4e_solutions
else
if [ $# -eq 1 ]
  then
    act4e-test --collections act4e_checks --module act4e_solutions --group $1
else
    echo "Need to pass either 0 or 1 argument"
    exit 3
fi
fi