Files
snippet-manager/.gitea/workflows/ci.yml
7000pctAUTO c3bbaccb92
Some checks failed
CI / test (push) Failing after 13s
Minimal CI - single job, simplest steps
2026-03-22 11:39:07 +00:00

21 lines
402 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install
run: pip install -e .
- name: Test
run: pip install pytest && pytest tests/ -v