Files
snippet-manager/.gitea/workflows/ci.yml
7000pctAUTO 30e64faa5f
Some checks failed
CI / test (push) Failing after 13s
Update CI - install dependencies explicitly before package
2026-03-22 11:51:39 +00:00

21 lines
453 B
YAML

name: CI
on:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install pytest pytest-asyncio
pip install click cryptography pygments rich zeroconf
pip install -e .
- name: Run tests
run: pytest tests/ -v