using ylib2to3 means we can test <=py311 on any python version supported by YAPF #362
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Test with pytest | |
on: | |
pull_request: | |
push: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: ["3.7", "3.11", "3.12"] # no particular need for 3.9 or 3.10 | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.6.0 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Upgrade pip | |
run: >- | |
python -m pip install | |
--upgrade | |
--disable-pip-version-check | |
pip | |
- name: Perform package installs | |
run: >- | |
pip install | |
. | |
pytest | |
pytest-cov | |
- name: Test with pytest | |
run: pytest |