Skip to content
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.

Bump requests from 2.20.0 to 2.32.3 #28

Bump requests from 2.20.0 to 2.32.3

Bump requests from 2.20.0 to 2.32.3 #28

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
jobs:
lint_and_test:
name: Linting and Testing
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.6, 3.7, 3.8 ]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup virtual environment
run: make venv
- name: Linting
run: make pylint