Skip to content

Commit

Permalink
(#181) adicionando lint
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagohdaqw committed May 4, 2021
1 parent a068444 commit 8abed21
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,21 @@ jobs:
- name: Upload reports to Codecov
run: bash <(curl -s https://codecov.io/bash) -Z

style-check:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master

- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.x"

- name: Install flake8
run: pip install flake8

- name: Lint
run: flake8

0 comments on commit 8abed21

Please sign in to comment.