Skip to content

Fix

Fix #693

Workflow file for this run

name: Lint
on:
push:
branches: [ "dev", "dev-CI/CD" ]
pull_request:
branches: [ "competition", "dev"]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v3
- name: Install Python dependencies
run: |
pip install black
- uses: wearerequired/lint-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
black: true
auto_fix: true
commit_message: "chore: apply linting fixes"
git_name: "DaVinci Bot"
git_email: "davincibot@devinci.fr"