Files
json-to-openapi/.gitea/workflows/ci.yml
7000pctAUTO 586b055bd9
Some checks failed
CI / test (push) Failing after 2s
Minimal workflow - skip download step entirely
2026-02-01 05:30:00 +00:00

16 lines
415 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install
run: |
pip3 install --upgrade pip setuptools wheel 2>/dev/null || pip install --upgrade pip setuptools wheel
pip3 install -e . pytest 2>/dev/null || pip install -e . pytest
- name: Test
run: |
pytest tests/ -v 2>/dev/null || python3 -m pytest tests/ -v