Skip to content

Merge pull request #7 from DrDroidLab/auto_sync_flag #7

Merge pull request #7 from DrDroidLab/auto_sync_flag

Merge pull request #7 from DrDroidLab/auto_sync_flag #7

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: pip install -e ".[dev]"
- name: Run tests with coverage
run: pytest tests/ -v --tb=short --cov=droidctx --cov-report=term-missing