Skip to content

Bump pytest from 7.4.3 to 8.0.2 #361

Bump pytest from 7.4.3 to 8.0.2

Bump pytest from 7.4.3 to 8.0.2 #361

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Set up Python 3.8
uses: actions/[email protected]
with:
python-version: "3.8"
- name: Install dependencies
shell: bash
run: |
pip install tox
- name: Run Tox
shell: bash
run: |
tox -e lint,black
build:
runs-on: ubuntu-latest
needs: lint
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
shell: bash
run: |
pip install tox
- name: Run Tox
shell: bash
run: |
tox -e tests