1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-03-06 19:49:20 +00:00
borg/.github/workflows/black.yaml

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

16 lines
376 B
YAML
Raw Normal View History

2022-03-02 06:19:33 +03: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 06:19:33 +03:00
name: Lint
on: [push, pull_request]
jobs:
lint:
2023-08-26 14:40:53 +02:00
runs-on: ubuntu-22.04
2022-03-02 06:19:33 +03:00
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
with:
2024-08-27 02:49:22 +02:00
version: "~= 24.0"