Skip to content

Merge branch 'main' into quinns-branch #5

Merge branch 'main' into quinns-branch

Merge branch 'main' into quinns-branch #5

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test
on: push
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Setup rye
uses: eifinger/setup-rye@v4
with:
enable-cache: true
version: '0.39.0'
- name: Setup environment
run: make .venv
- name: Test with pytest
run: make coverage.xml
- name: Check formatting
run: rye fmt --check
- name: Check linting
run: rye lint