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

Update requests requirement from ==2.25.* to >=2.25,<2.33 #31

Update requests requirement from ==2.25.* to >=2.25,<2.33

Update requests requirement from ==2.25.* to >=2.25,<2.33 #31

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
- name: Tests
run: make test