Files
man-card/.gitea/workflows/ci.yml
7000pctAUTO 9b7a78e5de
Some checks failed
CI / test (push) Failing after 8s
Use container for CI workflow
2026-01-31 22:02:45 +00:00

20 lines
394 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
container: python:3.11-slim
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Run tests
run: pytest tests/ -v