Skip to content

Merge working branch into base #34

Merge working branch into base

Merge working branch into base #34

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
branches: ["new-api"]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"
- name: Install dependencies
run: pip install -r requirements.txt -r requirements-dev.txt
- name: Run unit tests
run: python -m pytest tests/unit/ -q --tb=short