ci: Fail tests if version discovery fails

This commit is contained in:
Mike A.
2024-09-03 19:38:51 +02:00
parent 9104d5543a
commit 48965e725f

View File

@@ -20,7 +20,9 @@ jobs:
- id: supported-versions
name: Get supported versions
run: echo "py-versions=$(poetry run ./scripts/supported_py_versions.py)" >> "$GITHUB_OUTPUT"
run: |
set -e
echo "py-versions=$(poetry run ./scripts/supported_py_versions.py)" >> "$GITHUB_OUTPUT"
test:
runs-on: ubuntu-latest