Skip to content

Apply Pre-Commit

Apply Pre-Commit #36

Workflow file for this run

name: Python tests
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Python 3.13 Setup
uses: actions/setup-python@v5
with:
python-version: 3.13
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install python3-dev
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install -r requirements_dev.txt
- name: Run tests
run: python -m pytest