Spaces:
Runtime error
Runtime error
ugmSorcero
commited on
Commit
•
8d3aacc
1
Parent(s):
60642ec
Adds black linter
Browse files
.github/workflows/linter.yml
CHANGED
@@ -1,15 +1,10 @@
|
|
1 |
name: Linting
|
2 |
|
3 |
-
on:
|
4 |
-
push:
|
5 |
-
branches: [ "main" ]
|
6 |
-
|
7 |
-
workflow_dispatch:
|
8 |
|
9 |
jobs:
|
10 |
-
|
11 |
runs-on: ubuntu-latest
|
12 |
-
|
13 |
steps:
|
14 |
-
-
|
15 |
-
|
|
|
1 |
name: Linting
|
2 |
|
3 |
+
on: [push, pull_request, workflow_dispatch]
|
|
|
|
|
|
|
|
|
4 |
|
5 |
jobs:
|
6 |
+
lint:
|
7 |
runs-on: ubuntu-latest
|
|
|
8 |
steps:
|
9 |
+
- uses: actions/checkout@v2
|
10 |
+
- uses: psf/black@stable
|