From 3fd851977177490ab21e69284d65328cb092321f Mon Sep 17 00:00:00 2001 From: DilumAluthge-LLM <267464666+DilumAluthge-LLM@users.noreply.github.com> Date: Sat, 2 May 2026 16:55:11 -0400 Subject: [PATCH] Validate current S3 versions.json against schema Co-authored-by: OpenAI Codex [GPT-5] --- .github/workflows/CI.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 6ab8a1f..03a558c 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -141,5 +141,7 @@ jobs: run: rm -fv versions.json - name: Download the current versions.json from S3 run: curl -LO https://julialang-s3.julialang.org/bin/versions.json + - name: Validate versions.json against schema + run: npx -p ajv-cli@3.3.0 ajv -s schema.json -d versions.json - name: Run the post-build tests on the versions.json that we downloaded from S3 run: julia --project test/more_tests.jl versions.json