Skip to content

Merge pull request #26 from Rot127/small-fixes #19

Merge pull request #26 from Rot127/small-fixes

Merge pull request #26 from Rot127/small-fixes #19

Workflow file for this run

name: black
on: [push]
jobs:
linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: '3.11'
- name: Install black
run: |
python -m pip install --upgrade pip
pip install black
- name: Analysing the code with black
run: black --check $(git ls-files '*.py')