Files
json-to-openapi/.gitea/workflows/ci.yml
7000pctAUTO 8ec4825de7
All checks were successful
CI / test (push) Successful in 1s
Test if pip and pytest work in empty workspace
2026-02-01 05:33:02 +00:00

17 lines
333 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
run: |
echo "test" > test.txt
ls -la
- name: Run tests
run: |
pip3 install -e . pytest 2>&1 || echo "pip3 failed"
pytest tests/ -v 2>&1 || echo "pytest failed"