Skip to content

Tweak requirements and add automatic forward to the swagger UI. #6

Tweak requirements and add automatic forward to the swagger UI.

Tweak requirements and add automatic forward to the swagger UI. #6

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.10', '3.11', '3.12' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r test-requirements.txt
bash generate.sh
- name: Run tests
run: |
python -m unittest discover -s test