Skip to content

Commit

Permalink
Wokflow para validar materials
Browse files Browse the repository at this point in the history
Também renomeando workflow de deploy
  • Loading branch information
camilamaia committed Nov 6, 2024
1 parent 4b5cf40 commit dc06541
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 2 deletions.
File renamed without changes.
27 changes: 27 additions & 0 deletions .github/workflows/validate_materials.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Validate Materials

on:
push:

jobs:
validate:
runs-on: ubuntu-latest

steps:
- name: Check out the repository
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run validation script
run: |
export PYTHONPATH=$(pwd) # Adiciona o diretório raiz ao PYTHONPATH
python curadoria_coletiva/validate_materials.py
4 changes: 2 additions & 2 deletions curadoria_coletiva/validate_materials.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,6 @@ def _validate_material(material_data: Dict[str, Any], unique_titles: Set[str]) -


if __name__ == "__main__":
input_yaml_file = "all_materials.yml"
collect_materials("materials", input_yaml_file)
input_yaml_file = "curadoria_coletiva/all_materials.yml"
collect_materials("curadoria_coletiva/materials", input_yaml_file)
validate_materials_from_yaml(input_yaml_file)

0 comments on commit dc06541

Please sign in to comment.