Files
json-to-openapi/.gitea/workflows/ci.yml
7000pctAUTO 60946bb427
Some checks failed
CI / test (push) Failing after 1s
Add checkout and install steps
2026-02-01 05:22:54 +00:00

18 lines
315 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
run: |
git clone https://gitea.com/$GITEA_REPO_NAME .
- name: Install
run: |
pip install -e . pytest
- name: Test
run: |
pytest tests/ -v