22 lines
478 B
YAML
22 lines
478 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Download repo
|
|
run: |
|
|
wget -q https://gitea.com/7000pctAUTO/json-to-openapi/archive/main.tar.gz -O repo.tar.gz
|
|
tar xzf repo.tar.gz
|
|
ls -la
|
|
- name: Install
|
|
run: |
|
|
cd json-to-openapi-main
|
|
pip3 install -e . pytest
|
|
- name: Test
|
|
run: |
|
|
cd json-to-openapi-main
|
|
pytest tests/ -v
|