Skip to content

build(deps-dev): bump pytest from 8.2.1 to 8.2.2 in /requirements #116

build(deps-dev): bump pytest from 8.2.1 to 8.2.2 in /requirements

build(deps-dev): bump pytest from 8.2.1 to 8.2.2 in /requirements #116

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
tests:
name: "${{ matrix.tox }}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- python: "3.8"
tox: py38
- python: "3.9"
tox: py39
- python: "3.10"
tox: py310
- python: "3.11"
tox: py311
- python: "3.12"
tox: py312
- python: "pypy-3.9"
tox: pypy3
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "${{ matrix.python }}"
- run: |
python -m pip install --upgrade pip
pip install tox coveralls
- run: tox -e ${{ matrix.tox }}
qa:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.x"
- run: |
python -m pip install --upgrade pip
pip install tox
- run: tox -e lint