Skip to content

Set up GitHub Actions for running tests and checking types and formatting #1

Set up GitHub Actions for running tests and checking types and formatting

Set up GitHub Actions for running tests and checking types and formatting #1

Workflow file for this run

---
name: pytest
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version:
- "3.12"
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install dependencies
run: poetry install
- name: Run pytest
run: poetry run pytest