We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11fcc6f commit 6a587efCopy full SHA for 6a587ef
.github/workflows/build.yml
@@ -88,6 +88,11 @@ jobs:
88
- name: Run ${{ matrix.example }} Tests
89
working-directory: ${{ matrix.path }}
90
run: |
91
+ if [ -z "${{ matrix.test_commands }}" ]; then
92
+ echo "No test commands specified for ${{ matrix.example }}"
93
+ exit 1
94
+ fi
95
+
96
while IFS= read -r cmd; do
97
echo "Running: $cmd"
98
docker run -i -p 8888:8888 -p 8081:8081 -p 9092:9092 --rm -v $PWD:/build datasqrl/cmd:${SQRL_VERSION} $cmd
0 commit comments