Files
catan/.gitea/workflows/ci.yml
dan f542747d5e
Some checks failed
ci / tests (push) Failing after 2m31s
Обновить .gitea/workflows/ci.yml
2025-12-25 03:31:37 +03:00

28 lines
491 B
YAML

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install deps
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run tests
run: |
pytest