Skip to content

Commit d91229a

Browse files
committed
ci: simplify the linter implementations
1 parent eca7191 commit d91229a

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/lint.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
on: [push, pull_request]
22
name: Python Linting
33
jobs:
4-
PythonLinting:
5-
name: Python linting
4+
black:
65
runs-on: ubuntu-latest
76
steps:
8-
- uses: actions/checkout@master
9-
- name: Konstruktoid Python linting
10-
uses: konstruktoid/[email protected]
7+
- uses: actions/checkout@v2
8+
- uses: psf/black@stable
9+
flake8:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: TrueBrain/actions-flake8@v2
14+

0 commit comments

Comments
 (0)