FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-patterns/.github/workflows/lint_python.yml at master · CheoR/python-patterns · GitHub
CheoR
/
python-patterns
Public
forked from
faif/python-patterns
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python-patterns
/
.github
/
workflows
/
lint_python.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
20 lines (20 loc) · 725 Bytes
Breadcrumbs
python-patterns
/
.github
/
workflows
/
lint_python.yml
Copy path
File metadata and controls
20 lines (20 loc) · 725 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name
:
lint_python
on
:
[pull_request, push]
jobs
:
lint_python
:
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v2
-
uses
:
actions/setup-python@v2
-
run
:
pip install --upgrade pip
-
run
:
pip install black codespell flake8 isort mypy pytest pyupgrade tox
-
run
:
black --check .
-
run
:
codespell --quiet-level=2
#
--ignore-words-list="" --skip=""
-
run
:
flake8 . --count --show-source --statistics
-
run
:
isort --profile black .
-
run
:
tox
-
run
:
pip install -e .
-
run
:
mypy --ignore-missing-imports . || true
-
run
:
pytest .
-
run
:
pytest --doctest-modules . || true
-
run
:
shopt -s globstar && pyupgrade --py36-plus **/*.py
Back
|
FazBrowse Home
|
New Git URL