Merge pull request #113 from python-hyper/dependabot/github_actions/a… #101
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: main | |
on: | |
push: | |
branches: [master, main] | |
tags: | |
pull_request: | |
jobs: | |
main: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python: ['pypy3.9', '3.8', '3.9', '3.10', '3.11', '3.12'] | |
toxenv: [py] | |
include: | |
# windows | |
- os: windows-latest | |
python: '3.12' | |
toxenv: py | |
# misc | |
- os: ubuntu-latest | |
python: '3.12' | |
toxenv: docs | |
- os: ubuntu-latest | |
python: '3.12' | |
toxenv: pre-commit | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- run: python -mpip install --upgrade setuptools pip tox virtualenv | |
- run: tox -e ${{ matrix.toxenv }} |