diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 58c380a..82d1a8d 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: 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: - uses: actions/checkout@v2 @@ -31,4 +31,12 @@ jobs: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test with pytest run: | - python -m pytest -vv tests \ No newline at end of file + 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."