Skip to content

Bump urllib3 from 1.26.16 to 1.26.18 #118

Bump urllib3 from 1.26.16 to 1.26.18

Bump urllib3 from 1.26.16 to 1.26.18 #118

Workflow file for this run

name: lint
on:
pull_request:
push:
branches:
- main
jobs:
server:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Setup Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
poetry install
- name: Lint code with Flake8
run: |
poetry run flake8 ingestor
- name: Check code format with Black
run: |
poetry run black --check ingestor