Skip to content

Commit 698c4d1

Browse files
committed
COMMIT MESSAGE
1 parent 4a38210 commit 698c4d1

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/workflow.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,17 @@ on:
88
jobs:
99
build:
1010
runs-on: ubuntu-latest
11-
container: python:3.9-slim
11+
container: python:3.9-slim
12+
steps:
13+
- name: Cechkout
14+
uses: actions/checkout@v3
15+
- name: Install dependencies
16+
run: |
17+
python -m pip install --upgrade pip
18+
pip3 install -r requirements.txt
19+
- name: Lint with flake8
20+
run: |
21+
flake8 service --count --select=E9,F63,F7,F82 --show-source --statistics
22+
flake8 service --count --max-complexity=10 --max-line-length=127 --statistics
23+
- name: Run unit tests with nose
24+
run: nosetests -v --with-spec --spec-color --with-coverage --cover-package=app

0 commit comments

Comments
 (0)