borg/.github/workflows/black.yaml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
331 B
YAML
Raw Normal View History

2022-03-02 03:19:33 +00:00
# https://black.readthedocs.io/en/stable/integrations/github_actions.html#usage
# see also what we use locally, requirements.d/codestyle.txt - should be the same version here.
2022-03-02 03:19:33 +00:00
name: Lint
on: [push, pull_request]
jobs:
lint:
2022-12-17 19:30:07 +00:00
runs-on: ubuntu-20.04
2022-03-02 03:19:33 +00:00
steps:
2022-12-17 19:31:13 +00:00
- uses: actions/checkout@v3
- uses: psf/black@22.6.0