Inclusion of release test when build_test succeeds
This commit is contained in:
@ -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."
|
||||||
|
Reference in New Issue
Block a user