black fixes #98
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run various link checks, like flake8 and black, to make sure | |
# our code remains in good shape, avoids common bugs, and follows | |
# common coding conventions. | |
name: lint | |
on: | |
push: | |
branches-ignore: | |
- main | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
steps: | |
#---------------------------------------------- | |
# check-out repo and set-up python | |
#---------------------------------------------- | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.10.10 | |
#---------------------------------------------- | |
# load pip cache if cache exists | |
#---------------------------------------------- | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip | |
restore-keys: ${{ runner.os }}-pip | |
#---------------------------------------------- | |
# run isort | |
#---------------------------------------------- | |
- run: python -m pip install isort | |
- run: | | |
isort --profile black ./src ./tests | |
#---------------------------------------------- | |
# run black | |
#---------------------------------------------- | |
- run: python -m pip install black==22.12.0 | |
- run: | | |
black --version | |
black ./src ./tests --diff | |
black ./src ./tests --check | |