Skip to content

🆒(#80): Arrumando erro nas pastas #3

🆒(#80): Arrumando erro nas pastas

🆒(#80): Arrumando erro nas pastas #3

Workflow file for this run

name: Unit Test
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 selenium
pip install PyPDF2
pip install pytest
- name: Run unittest
run:
pytest Testes/test_ExtrairJson.py
pytest Testes/test_Regex.py
pytest Testes/test_WebScraper.py