tests #3326
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
# This workflow runs tests on pull requests. | |
name: tests | |
on: | |
pull_request: | |
push: | |
# Run once a day | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
tests: | |
runs-on: ${{ matrix.platform.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
platform: | |
- os: ubuntu-latest | |
architecture: x64 | |
- os: windows-latest | |
architecture: x64 | |
# x86 builds are only meaningful for Windows | |
- os: windows-latest | |
architecture: x86 | |
- os: macos-12 | |
architecture: x64 | |
python: | |
- 3.8 | |
- 3.9 | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
- 3.x | |
category: | |
- local-slow | |
# These require credentials. | |
# Enable them once we sort how to provide them. | |
# - integ-slow | |
# - examples | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
architecture: ${{ matrix.platform.architecture }} | |
- run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade -r dev_requirements/ci-requirements.txt | |
- name: run test | |
env: | |
TOXENV: ${{ matrix.category }} | |
run: tox -- -vv | |
upstream-py311: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
category: | |
- nocmk | |
- sourcebuildcheck | |
- test-upstream-requirements-py311 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade -r dev_requirements/ci-requirements.txt | |
- name: run test | |
env: | |
TOXENV: ${{ matrix.category }} | |
run: tox -- -vv |