Inclusion of release test when build_test succeeds
All checks were successful
Gitea Actions Demo / build_test (3.13.3) (push) Successful in 10s
Gitea Actions Demo / release-test (push) Successful in 2s

This commit is contained in:
Jakob Lass
2025-04-11 08:39:46 +02:00
parent 09e9d50bc4
commit 920df7c5b3

View File

@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: [3.13.3,3.12.10,3.11.12,3.10.17,3.9.22] python-version: [3.13.3]#,3.12.10,3.11.12,3.10.17,3.9.22]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
@ -31,4 +31,12 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest - name: Test with pytest
run: | run: |
python -m pytest -vv tests python -m pytest -vv tests
release-test:
needs: [build_test]
runs-on: ubuntu-latest
steps:
- name: Checking that the above worked
run: |
echo "🎉 The job was automatically triggered by the success of build_test."