Skip to content

Update mypy requirement from <1.8.0,>=1.0.0 to >=1.0.0,<1.9.0 #157

Update mypy requirement from <1.8.0,>=1.0.0 to >=1.0.0,<1.9.0

Update mypy requirement from <1.8.0,>=1.0.0 to >=1.0.0,<1.9.0 #157

Workflow file for this run

name: mypy-zope
on:
push:
branches: master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade -e .[test]
pip install coveralls
- name: Test with pytest
run: |
pytest --junit-xml var/test-results/results.xml -v --cov src/mypy_zope --cov-report=term
- name: Check with mypy
run: |
mypy src/mypy_zope --strict
- name: Coveralls
if: ${{ success() }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN}}
COVERALLS_PARALLEL: true
run: |
coveralls --service=github
report:
needs: test
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v2
- name: Coveralls Finish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN}}
run: |
pip install coveralls
coveralls --service=github --finish