Bump the python-requirements group across 1 directory with 6 updates #1939
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
name: Tests | |
on: | |
push: | |
branches: | |
- main | |
- '*.x' | |
paths-ignore: | |
- 'docs/**' | |
- '*.md' | |
- '*.rst' | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- '*.md' | |
- '*.rst' | |
jobs: | |
tests: | |
name: ${{ matrix.name || matrix.python }} | |
runs-on: ${{ matrix.os || 'ubuntu-latest' }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- {python: '3.12'} | |
- {name: Windows, python: '3.12', os: windows-latest} | |
- {name: Mac, python: '3.12', os: macos-latest} | |
- {python: '3.11'} | |
- {python: '3.10'} | |
- {python: '3.9'} | |
- {python: '3.8'} | |
- {name: PyPy, python: 'pypy-3.10', tox: pypy310} | |
- {name: Minimum Versions, python: '3.12', tox: py-min} | |
- {name: Development Versions, python: '3.8', tox: py-dev} | |
steps: | |
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 | |
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 | |
with: | |
python-version: ${{ matrix.python }} | |
allow-prereleases: true | |
cache: pip | |
cache-dependency-path: requirements*/*.txt | |
- run: pip install tox | |
- run: tox run -e ${{ matrix.tox || format('py{0}', matrix.python) }} | |
typing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 | |
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 | |
with: | |
python-version: '3.x' | |
cache: pip | |
cache-dependency-path: requirements*/*.txt | |
- name: cache mypy | |
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | |
with: | |
path: ./.mypy_cache | |
key: mypy|${{ hashFiles('pyproject.toml') }} | |
- run: pip install tox | |
- run: tox run -e typing |