Skip to content

chore: polish GitHub presentation and contributor workflows #1

chore: polish GitHub presentation and contributor workflows

chore: polish GitHub presentation and contributor workflows #1

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
unit-tests:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run unit tests
run: pytest tests/unit -m unit --cov=app --cov-report=term-missing