#2300: Create a JSON validator that runs on all JSON produced by CI #1696
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: Check Workflow Generation | |
on: pull_request | |
jobs: | |
check-workflow-generation: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Install dependencies | |
run: sudo apt-get update && sudo apt-get install -yq cpanminus && cpanm --sudo Template::Tiny Config::Simple | |
- name: Check workflows | |
shell: bash | |
run: ./scripts/check_workflow_generation.sh $(pwd) |