Skip to content

Bump coverage from 7.6.2 to 7.6.3 (#53) #203

Bump coverage from 7.6.2 to 7.6.3 (#53)

Bump coverage from 7.6.2 to 7.6.3 (#53) #203

Workflow file for this run

name: CI
on:
- push
- pull_request
- workflow_dispatch
jobs:
main:
strategy:
matrix:
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
runs-on: ubuntu-latest
name: Python ${{ matrix.python }}
steps:
- uses: actions/checkout@v4
- name: set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: prepare pip
run:
python -m pip install --upgrade pip setuptools wheel
- name: install package
run:
python -m pip install .[dev]
- name: run tests
run:
pytest --verbose tests
- name: run flake8
run:
flake8 swagger_parser tests setup.py
- name: build docs
run:
sphinx-build -n -W --keep-going -T -b html docs build/sphinx/html