Update .gitea/workflows/deploy.yml
Some checks failed
deploy / deploy (3.10) (push) Failing after 42s
deploy / deploy (3.11) (push) Failing after 8s
deploy / deploy (3.12) (push) Failing after 8s
deploy / deploy (3.9) (push) Failing after 9s
deploy / deploy (pypy3.10) (push) Successful in 40s
deploy / deploy (pypy3.9) (push) Successful in 43s
Some checks failed
deploy / deploy (3.10) (push) Failing after 42s
deploy / deploy (3.11) (push) Failing after 8s
deploy / deploy (3.12) (push) Failing after 8s
deploy / deploy (3.9) (push) Failing after 9s
deploy / deploy (pypy3.10) (push) Successful in 40s
deploy / deploy (pypy3.9) (push) Successful in 43s
This commit is contained in:
@@ -5,9 +5,19 @@ on: [push]
|
|||||||
jobs:
|
jobs:
|
||||||
deploy:
|
deploy:
|
||||||
runs-on: "homesrv01"
|
runs-on: "homesrv01"
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
python-version: ["pypy3.9", "pypy3.10", "3.9", "3.10", "3.11", "3.12"]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-python@v2
|
- name: Set up Python ${{ matrix.python-version }}
|
||||||
|
uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version: ${{ matrix.python-version }}
|
||||||
|
# You can test your matrix by printing the current Python version
|
||||||
|
- name: Display Python version
|
||||||
|
run: python -c "import sys; print(sys.version)"
|
||||||
# with:
|
# with:
|
||||||
# python-version: '3.12.4' # Version range or exact version of a Python version to use, using SemVer's version range syntax
|
# python-version: '3.12.4' # Version range or exact version of a Python version to use, using SemVer's version range syntax
|
||||||
#architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
|
#architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
|
||||||
|
|||||||
Reference in New Issue
Block a user