black.yml 325 B

1234567891011121314151617
  1. name: Python Formatting (run ./bw-dev black to fix)
  2. on:
  3. push:
  4. branches: [ main ]
  5. pull_request:
  6. branches: [ main ]
  7. jobs:
  8. lint:
  9. runs-on: ubuntu-latest
  10. steps:
  11. - uses: actions/checkout@v3
  12. - uses: actions/setup-python@v4
  13. - uses: psf/black@22.12.0
  14. with:
  15. version: 22.12.0