Files
snippet-manager/.gitea/workflows/ci.yml
7000pctAUTO d078743149
Some checks failed
CI / test (push) Failing after 4s
Use explicit checkout action and simplified pip commands
2026-03-22 13:09:37 +00:00

18 lines
326 B
YAML

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install
run: pip install -e . pytest pytest-asyncio
- name: Test
run: python -m pytest tests/ -v