-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🆒 Criação do arquivo yml para análise estática de código com o pylint
- Loading branch information
1 parent
9a9ecb5
commit 6d70a5c
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Python CI | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- implementacao | ||
|
||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Instalando o Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install pylint | ||
pip install selenium | ||
pip install PyPDF2 | ||
- name: Run Pylint | ||
run: | ||
pylint WebScraping/ExtrairJson.py | ||
pylint WebScraping/Regex.py | ||
pylint WebScraping/WebScraper.py |
Binary file not shown.