Skip to content

Bump responses from 0.23.1 to 0.23.2 #253

Bump responses from 0.23.1 to 0.23.2

Bump responses from 0.23.1 to 0.23.2 #253

Workflow file for this run

name: Python style check
on: [push]
jobs:
style_check:
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest]
python-version: [3.7, 3.8, 3.9]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test flake8 syntax with tox
run: tox -e flake8
- name: Black formatting check
run: tox -e black
- name: Type hints check
run: tox -e mypy