Skip to content

code-review-fix checklist sync completed task flags #1

code-review-fix checklist sync completed task flags

code-review-fix checklist sync completed task flags #1

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- master
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt pytest
- name: Run tests
run: pytest