FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Osintgram/.github/workflows/lint_python.yml at master · Javapluto3219/Osintgram · GitHub
Javapluto3219
/
Osintgram
Public
forked from
Datalux/Osintgram
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Osintgram
/
.github
/
workflows
/
lint_python.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
20 lines (20 loc) · 810 Bytes
Breadcrumbs
Osintgram
/
.github
/
workflows
/
lint_python.yml
Copy path
File metadata and controls
20 lines (20 loc) · 810 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 bandit black codespell flake8 isort mypy pytest pyupgrade safety
-
run
:
bandit -r . || true
-
run
:
black --check . || true
-
run
:
codespell --ignore-words-list="followings" --quiet-level=2
-
run
:
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
-
run
:
isort --check-only --profile black . || true
-
run
:
pip install -r requirements.txt
-
run
:
mypy --ignore-missing-imports .
-
run
:
pytest . || true
-
run
:
pytest --doctest-modules . || true
-
run
:
shopt -s globstar && pyupgrade --py36-plus **/*.py || true
-
run
:
safety check
Back
|
FazBrowse Home
|
New Git URL