Skip to content

ci: switch to newer versions of external github workflows #66

ci: switch to newer versions of external github workflows

ci: switch to newer versions of external github workflows #66

Workflow file for this run

name: build
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.12' ]
name: run tests on Python v${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Setup Poetry
uses: abatilo/actions-poetry@v2
- name: Install Python packages
run: |
poetry install --no-root
- name: Run tests
run: |
poetry run pytest