Files
snippet-manager/.gitea/workflows/ci.yml
7000pctAUTO b125c95ac8
Some checks failed
CI / test (push) Failing after 3s
Try CI with docker container
2026-03-22 12:04:11 +00:00

18 lines
378 B
YAML

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