Skip to content

chore(deps-dev): bump pytest from 8.1.1 to 8.2.0 #321

chore(deps-dev): bump pytest from 8.1.1 to 8.2.0

chore(deps-dev): bump pytest from 8.1.1 to 8.2.0 #321

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install "tox<5" tox-gh-actions "poetry>=1.7,<1.8"
- name: Test with tox
run: tox