8000 Added black to GitHub actions. · stroebjo/code.djangoproject.com@b644f85 · GitHub
[go: up one dir, main page]

Skip to content

Commit b644f85

Browse files
committed
Added black to GitHub actions.
1 parent 88dff12 commit b644f85

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/linters.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Linters
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.ref }}
11+
cancel-in-progress: true
12+
13+
permissions:
14+
contents: read
15+
16+
jobs:
17+
black:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@v4
22+
- name: black
23+
uses: psf/black@stable

0 commit comments

Comments
 (0)
0