Skip to content

[pre-commit.ci] pre-commit autoupdate #156

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #156

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11']
steps:
- name: Git Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install tox tox-gh-actions
- name: Test with tox
run: tox