We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a44b3c commit 2df3105Copy full SHA for 2df3105
1 file changed
.github/workflows/main.yml
@@ -1,4 +1,4 @@
1
-name: Bookinn-app w orkflow
+name: Bookinn-app workflow
2
3
on: [push]
4
@@ -18,6 +18,14 @@ jobs:
18
pip install black flake8 flake8-isort
19
pip install -r requirements.txt
20
21
- - name: Test with black, flake8-isort and flake8
+ - name: Test with black
22
run: |
23
- python -m black isort flake8
+ python -m black
24
+
25
+ - name: Test with flake8-isort
26
+ run: |
27
+ python -m isort
28
29
+ - name: Test with flake8
30
31
+ python -m flake8
0 commit comments