Files
botmafieux/.gitea/workflows/ci.yaml
Mathéo Nebulo9 DESSAUVAGES 3fb926ec20
Some checks failed
CI / Run tests (pull_request) Failing after 20s
fix: Fix pipeline, add ci and adapted compose
2026-07-16 21:15:02 +02:00

23 lines
451 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.13
- name: Install dependencies
run: python -m pip install --no-cache-dir -r requirements.txt
- name: Run pytest
run: pytest -q