Skip to content

Update deps; bump min Python to 3.10 #35

Update deps; bump min Python to 3.10

Update deps; bump min Python to 3.10 #35

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, windows-2022]
python-version: ['3.10', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pipx install poetry
poetry install
- name: Run tests
run: |
poetry run pytest
- name: Run flake8
run: |
poetry run flake8 .