Cesgranrio - Transpetro 2023 - Nível Médio - Faixas de Dutos #136
Workflow file for this run
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: Teste Questões | |
on: | |
pull_request: | |
jobs: | |
yamllint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Yamllint questoes | |
uses: ibiqlik/action-yamllint@v3 | |
with: | |
file_or_dir: questoes/ | |
config_file: utils/yamllint-conf.yaml | |
verifica_questoes: | |
needs: yamllint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.8' | |
- name: Install Requirements | |
run: pip install -r requirements.txt | |
- name: Run VerificaQuestoes | |
run: python utils/verificaquestoes.py |