Skip to content

build(deps): bump peter-evans/create-pull-request from 6 to 7 #96

build(deps): bump peter-evans/create-pull-request from 6 to 7

build(deps): bump peter-evans/create-pull-request from 6 to 7 #96

Workflow file for this run

name: tests
on:
push:
pull_request:
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
- name: install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: test with tox
run: tox