Files
snippet-manager/.gitea/workflows/ci.yml
7000pctAUTO 644458abdb
Some checks failed
CI / test (push) Has been cancelled
fix: resolve CI test failures - API compatibility fixes
2026-03-22 13:04:03 +00:00

24 lines
497 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
run: |
sudo apt-get update
sudo apt-get install -y python3 python3-pip python3-venv
python3 --version
pip3 --version
- name: Install package
run: pip3 install -e . pytest pytest-asyncio
- name: Run tests
run: pytest tests/ -v