Files
json-to-openapi/.gitea/workflows/ci.yml
7000pctAUTO f2b16574bf
Some checks failed
CI / test (push) Failing after 1s
Use pip3 with apt-get fallback
2026-02-01 05:28:30 +00:00

17 lines
361 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install
run: |
which pip3 || (apt-get update && apt-get install -y python3-pip)
pip3 install --upgrade pip setuptools wheel
pip3 install -e .
pip3 install pytest
- name: Test
run: pytest tests/ -v