Bump jinja2 from 3.1.5 to 3.1.6 #22
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: Data validator | |
on: [push] | |
jobs: | |
test: | |
name: Validate | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install poetry | |
run: pipx install poetry | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
cache: 'poetry' | |
- name: setup python packages | |
run: poetry install | |
- name: validate people.json file | |
run: poetry run mysoc-validator popolo validate members/people.json |