Skip to content

Bump requests from 2.31.0 to 2.32.0 #38

Bump requests from 2.31.0 to 2.32.0

Bump requests from 2.31.0 to 2.32.0 #38

Workflow file for this run

name: lint
on:
push:
branches: [master]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -e ".[dev]"
- name: Run pylama
run: pylama