From f75f5766345f1310ca138a7ba5b0271be3405b42 Mon Sep 17 00:00:00 2001 From: Daniel D'Avella Date: Thu, 7 Mar 2024 13:51:48 -0500 Subject: [PATCH] Add workflow to validate schema --- .github/workflows/validate.yaml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/validate.yaml diff --git a/.github/workflows/validate.yaml b/.github/workflows/validate.yaml new file mode 100644 index 0000000..dd052f3 --- /dev/null +++ b/.github/workflows/validate.yaml @@ -0,0 +1,32 @@ +name: Validate Schema + +on: + push: + branches: + - main + - develop + pull_request: + branches: + - main + - develop + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + validate: + name: Build Package + runs-on: ubuntu-20.04 + timeout-minutes: 5 + steps: + - name: Set Up Python + uses: actions/setup-python@v5 + with: + python-version: '3.12' + - name: Check out code + uses: actions/checkout@v4 + - name: Install dependencies + run: pip install -r scripts/requirements.txt + - name: Validate schema + run: ./scripts/validate_schema.py codetf.schema.json