WUO #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Do not edit this file by hand. This is generated automatically by running | |
# generate_tests_yml.py. | |
name: Tests | |
on: | |
push: | |
branches-ignore: | |
- 'release/*' | |
pull_request: | |
env: | |
CORE_REPO_SHA: 141a6a2e473ef7f0ec4915dfb71e3c0fa595283e | |
jobs: | |
distro_38_ubuntu-latest: | |
name: distro 3.8 ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Contrib Repo @ SHA - ${{ github.sha }} | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.8" | |
- name: Install tox | |
run: pip install tox | |
- name: Run tests | |
run: tox -e py38-test-distro -- -ra | |
distro_39_ubuntu-latest: | |
name: distro 3.9 ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Contrib Repo @ SHA - ${{ github.sha }} | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.9" | |
- name: Install tox | |
run: pip install tox | |
- name: Run tests | |
run: tox -e py39-test-distro -- -ra | |
distro_310_ubuntu-latest: | |
name: distro 3.10 ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Contrib Repo @ SHA - ${{ github.sha }} | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install tox | |
run: pip install tox | |
- name: Run tests | |
run: tox -e py310-test-distro -- -ra | |
distro_311_ubuntu-latest: | |
name: distro 3.11 ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Contrib Repo @ SHA - ${{ github.sha }} | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Install tox | |
run: pip install tox | |
- name: Run tests | |
run: tox -e py311-test-distro -- -ra | |
distro_312_ubuntu-latest: | |
name: distro 3.12 ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Contrib Repo @ SHA - ${{ github.sha }} | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install tox | |
run: pip install tox | |
- name: Run tests | |
run: tox -e py312-test-distro -- -ra | |
distro_py3_ubuntu-latest: | |
name: distro pypy-3.8 ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Contrib Repo @ SHA - ${{ github.sha }} | |
uses: actions/checkout@v4 | |
- name: Set up Python pypy-3.8 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "pypy-3.8" | |
- name: Install tox | |
run: pip install tox | |
- name: Run tests | |
run: tox -e pypy3-test-distro -- -ra |