Skip to content

[th/reformat-black] black: reformat all code with python black #4

[th/reformat-black] black: reformat all code with python black

[th/reformat-black] black: reformat all code with python black #4

Workflow file for this run

name: Check style, test
on:
push:
branches:
pull_request:
branches:
jobs:
check3_9:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install black
- name: Check code formatting with Black
run: |
black --version
black --check --diff .