Skip to content

Merge pull request #153 from ariebovenberg/dependabot/pip/pytest-8.2.0 #322

Merge pull request #153 from ariebovenberg/dependabot/pip/pytest-8.2.0

Merge pull request #153 from ariebovenberg/dependabot/pip/pytest-8.2.0 #322

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