Skip to content

Update LICENSE and CI #21

Update LICENSE and CI

Update LICENSE and CI #21

Workflow file for this run

name: Black
env:
PYTHONUNBUFFERED: 1
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install black
run: pip install black==23.7.0
- name: Check code with black
run: black --check --diff --color .