forked from cyprieng/swagger-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (34 loc) · 823 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: CI
on:
- push
- pull_request
- workflow_dispatch
jobs:
main:
strategy:
matrix:
python: [3.8, 3.9, '3.10', '3.11', '3.12']
fail-fast: false
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