Update publish.yml #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Review | |
on: [push, pull_request] | |
jobs: | |
review: | |
name: Run linters and tests | |
runs-on: "ubuntu-20.04" | |
strategy: | |
matrix: | |
python: ["3.6", "3.7", "3.10", "3.11"] | |
steps: | |
- name: Checkout the source code | |
uses: actions/checkout@v2 | |
- name: Set the python version | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install dependencies | |
uses: ./.github/actions/install | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Run tests | |
# Python 3.6 tests have been removed since swagger-spec-validator no longer supports it. | |
# A successful workflow run for Python 3.6 is required by the GitHub branch protection rules. | |
if: ${{ matrix.python != 3.6 }} | |
env: | |
PYTHON_VERSION: ${{ matrix.python }} | |
run: tox -e $(tox -l | grep py${PYTHON_VERSION//.} | paste -sd "," -) | |
- name: Report coverage | |
if: ${{ matrix.python == 3.9 }} | |
run: | | |
pip install coverage | |
coverage report | |
- name: Check for incompatibilities with publishing to PyPi | |
if: ${{ matrix.python == 3.8 }} | |
run: | | |
pip install -r requirements/publish.txt | |
python setup.py sdist | |
twine check dist/* |