Merge pull request #249 from JonathonReinhart/no-wildcard-imports #230
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
# Enforce code formatting with Black | |
# https://black.readthedocs.io/en/stable/integrations/github_actions.html | |
name: Blacken | |
on: [push, pull_request] | |
jobs: | |
blacken: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: psf/black@stable | |
with: | |
options: "--check --color --diff" | |
src: "." | |
version: "~= 23.0" # Must match requirements.txt |