Skip to content

Bump flake8 from 7.0.0 to 7.1.0 in the dependencies group #517

Bump flake8 from 7.0.0 to 7.1.0 in the dependencies group

Bump flake8 from 7.0.0 to 7.1.0 in the dependencies group #517

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: "**/poetry.lock"
- name: Install poetry
run: pip --disable-pip-version-check install -U poetry
- name: Install Python packages
run: poetry install
- name: Lint with flake8
run: |
poetry run flake8 --version
poetry run flake8 --show-source --statistics fakesmtpd test_fakesmtpd
- name: Type check with mypy
run: |
poetry run mypy --version
poetry run mypy fakesmtpd test_fakesmtpd
- name: Test with pytest
run: poetry run pytest