Skip to content

Commit 7ffab0a

Browse files
committed
test with flake8
1 parent dc7c983 commit 7ffab0a

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
24+
python -m black isort flake8

0 commit comments

Comments
 (0)