Files
snippet-manager/.gitea/workflows/ci.yml
7000pctAUTO 82ae30b916
Some checks failed
CI / test (push) Failing after 3s
Simplify CI workflow to use python container directly
2026-03-22 13:07:52 +00:00

15 lines
280 B
YAML

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
container: python:3.11-slim
steps:
- name: Install package
run: pip install -e . pytest pytest-asyncio && python -m pytest tests/ -v