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 d4bfa76
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
File renamed without changes.
26 changes: 26 additions & 0 deletions .github/workflows/validate_materials.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
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: |
python curadoria_coletiva/validate_materials.py

0 comments on commit d4bfa76

Please sign in to comment.