Skip to content

Commit

Permalink
COMMIT MESSAGE
Browse files Browse the repository at this point in the history
  • Loading branch information
Malinhara committed Jul 8, 2024
1 parent 77a3ea8 commit abf955d
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,20 @@ on:
jobs:
build:
runs-on: ubuntu-latest
container: python:3.9-slim
container: python:3.9-slim
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint with flake8
run: |
flake8 service --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 service --count --max-complexity=10 --max-line-length=127 --statistics
- name: Run unit tests with nose
run: nosetests -v --with-spec --spec-color --with-coverage --cover-package=app

0 comments on commit abf955d

Please sign in to comment.