Skip to content

Merge pull request #179 from centre-for-humanities-computing/daradio-… #543

Merge pull request #179 from centre-for-humanities-computing/daradio-…

Merge pull request #179 from centre-for-humanities-computing/daradio-… #543

# GitHub action for checking in any files in the repo should
# be reformatted with black.
# you can always run
# black .
# to format all scripts.
name: black
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
with:
version: "22.3.0"