Skip to content

Bump certifi 4 security #40

Bump certifi 4 security

Bump certifi 4 security #40

Workflow file for this run

name: Black check
on: [pull_request]
jobs:
black-check:
runs-on: ubuntu-latest
name: Black
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@master
with:
python-version: 3.8
- name: install black
run: |
pip install black==22.3.0
- name: run black
run: |
black . --check --line-length 100