Skip to content

Commit

Permalink
🆒 Criação do arquivo yml para análise estática de código com o pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoHDuarte2 committed Nov 29, 2023
1 parent 9a9ecb5 commit 6d70a5c
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/lint.yml
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 removed __pycache__/test_WebScraper.cpython-38.pyc
Binary file not shown.

0 comments on commit 6d70a5c

Please sign in to comment.