Skip to content

Bump future from 0.17.1 to 0.18.3 #29

Bump future from 0.17.1 to 0.18.3

Bump future from 0.17.1 to 0.18.3 #29

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'poetry'
- name: Install Python dependencies
run: poetry install --with=dev
- name: Run Flake8
run: poetry run flake8 .
- name: Run Black
run: poetry run black --check .
- name: Run isort
run: poetry run isort --check --diff .