Skip to content

Merge main into develop #8

Merge main into develop

Merge main into develop #8

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches: [develop, main]
permissions:
contents: read
jobs:
unit-tests:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: "3.12"
cache: pip
cache-dependency-path: requirements.txt
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install pytest pytest-asyncio
- name: Run unit tests
run: python -m pytest tests -q