Files
snippet-manager/.gitea/workflows/ci.yml
7000pctAUTO 12e3018523
Some checks failed
CI / test (push) Failing after 4s
Use checkout action and direct python setup
2026-03-22 12:30:56 +00:00

19 lines
310 B
YAML

name: CI
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
run: |
python3 --version
pip3 install -e . pytest pytest-asyncio
- name: Run tests
run: pytest tests/ -v