Matheus Felipe
2 anos atrás
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados
ID da chave GPG: AA785C523274872F
1 arquivos alterados com
26 adições e
0 exclusões
-
.github/workflows/test_of_validate_package.yml
|
|
@@ -0,0 +1,26 @@ |
|
|
|
name: "Tests of validate package" |
|
|
|
|
|
|
|
on: |
|
|
|
push: |
|
|
|
branches: [ master ] |
|
|
|
pull_request: |
|
|
|
branches: [ master ] |
|
|
|
|
|
|
|
jobs: |
|
|
|
unittest: |
|
|
|
name: 'Run tests of validate package' |
|
|
|
runs-on: ubuntu-latest |
|
|
|
|
|
|
|
steps: |
|
|
|
- name: Checkout repository |
|
|
|
uses: actions/checkout@v2 |
|
|
|
|
|
|
|
- name: Set up Python |
|
|
|
uses: actions/setup-python@v2 |
|
|
|
with: |
|
|
|
python-version: '3.8' |
|
|
|
|
|
|
|
- name: Run Unittest |
|
|
|
run: | |
|
|
|
cd scripts |
|
|
|
python -m unittest discover tests/ --verbose |