Skip to content

chore: pre-commit autoupdate (#68) #154

chore: pre-commit autoupdate (#68)

chore: pre-commit autoupdate (#68) #154

Workflow file for this run

name: Test
on:
pull_request: {}
push:
branches: [main]
workflow_dispatch:
inputs: {}
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
pipx install poetry
poetry --version
- name: Install dependencies
run: |
poetry install
- name: Test with pytest
run: |
poetry run pytest