mirror of
https://github.com/borgbackup/borg.git
synced 2026-03-12 21:52:24 -04:00
15 lines
385 B
YAML
15 lines
385 B
YAML
# https://black.readthedocs.io/en/stable/integrations/github_actions.html#usage
|
|
# See also what we use locally in requirements.d/codestyle.txt — this should be the same version here.
|
|
|
|
name: Lint
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: psf/black@stable
|
|
with:
|
|
version: "~= 24.0"
|