Files
json-to-openapi/.gitea/workflows/ci.yml
7000pctAUTO c5e9ecb5b1
Some checks failed
CI / test (push) Failing after 1s
Use python3 -m pip explicitly
2026-02-01 05:24:02 +00:00

19 lines
416 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
run: |
git clone https://gitea.com/7000pctAUTO/json-to-openapi .
- name: Install
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -e .
python3 -m pip install pytest
- name: Test
run: python3 -m pytest tests/ -v