🔥 Remoção do arquivo yml que faria os testes. #39
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
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 Camada_Dados/extrair.py | |
pylint Camada_Dados/regex.py | |
pylint Camada_Dados/web_scraper.py |