Skip to content

Merge pull request #19 from cyai/development #5

Merge pull request #19 from cyai/development

Merge pull request #19 from cyai/development #5

Workflow file for this run

name: Format
on:
push:
branches:
- main
jobs:
format-code:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- name: Install Black dependency
run: |
python -m pip install --upgrade pip
pip install black
- uses: wearerequired/lint-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
black: true
auto_fix: true