Skip to content

Bump tj-actions/branch-names from 5 to 7.0.7 in /.github/workflows #288

Bump tj-actions/branch-names from 5 to 7.0.7 in /.github/workflows

Bump tj-actions/branch-names from 5 to 7.0.7 in /.github/workflows #288

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