Skip to content

Merge pull request #5 from BrainLesion/feature/formatting-actions #6

Merge pull request #5 from BrainLesion/feature/formatting-actions

Merge pull request #5 from BrainLesion/feature/formatting-actions #6

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run-linters:
name: lint
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install Python dependencies
run: pip install black
- name: Run linters
uses: wearerequired/lint-action@v2
with:
black: true