Files
json-to-openapi/.gitea/workflows/ci.yml
7000pctAUTO 64d1fa488b
Some checks failed
CI / test (push) Failing after 3s
Use simpler variable names for Gitea Actions
2026-02-01 05:22:01 +00:00

16 lines
371 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
run: |
git clone https://gitea.com/$GITEA_REPO_NAME . 2>/dev/null || git clone https://gitea.com/${{ github.repository }} .
- name: Install and test
run: |
pip install -e . pytest
pytest tests/ -v