We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc7c983 commit 7ffab0aCopy full SHA for 7ffab0a
1 file changed
.github/workflows/main.yml
@@ -0,0 +1,24 @@
1
+name: Bookinn-app w orkflow
2
+
3
+on: [push]
4
5
+jobs:
6
+ tests:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - name: Set up Python
12
13
+ uses: actions/setup-python@v2
14
+ with:
15
+ python-version 3.9
16
+ - name: Install dependencies
17
+ run: |
18
+ python -m pip install --upgrade pip
19
+ pip install black flake8 flake8-isort
20
+ pip install -r requirements.txt
21
22
+ - name: Test with black, flake8-isort and flake8
23
24
+ python -m black isort flake8
0 commit comments