Skip to content

Bump urllib3 from 1.26.5 to 1.26.18 #33

Bump urllib3 from 1.26.5 to 1.26.18

Bump urllib3 from 1.26.5 to 1.26.18 #33

Workflow file for this run

name: continuous integration
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout action
uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install Poetry
uses: snok/[email protected]
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install dependencies
run: poetry install --no-interaction
- name: Run tests
run: |
source $VENV
make tests
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
fail_ci_if_error: true
linters:
runs-on: ubuntu-latest
steps:
- name: Checkout action
uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install Poetry
uses: snok/[email protected]
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install dependencies
run: poetry install --no-interaction
- name: Run linter - black
run: |
source $VENV
python -m black .
- name: Run linter - isort
uses: jamescurtin/isort-action@master