Files
json-to-openapi/.gitea/workflows/ci.yml
7000pctAUTO d6951bfdab
Some checks failed
CI / test (push) Failing after 2s
Clone with GITEA_REPO_NAME and test
2026-02-01 05:31:16 +00:00

19 lines
387 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Debug vars
run: |
echo "GITEA_REPO_NAME=$GITEA_REPO_NAME"
- name: Clone
run: |
git clone "https://gitea.com/${GITEA_REPO_NAME}.git" .
- name: Install
run: pip3 install -e . pytest
- name: Test
run: pytest tests/ -v