Skip to content

Add docker config

Add docker config #9

Workflow file for this run

name: Tests
on:
push:
branches:
- '**' # Runs on push to any branch
pull_request:
branches:
- '**' # Runs on pull requests to any branch
workflow_dispatch: # Allows for manual triggering
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Bootstrap poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y
- name: Update PATH
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install dependencies
run: |
poetry install
- name: Test with pytest
run: poetry run pytest -vv