From 1d0176899f48bb8e0722ae30fd5dc258318a3542 Mon Sep 17 00:00:00 2001 From: George Lambert Date: Tue, 15 Sep 2026 22:23:04 -0400 Subject: [PATCH] S13: Forgejo catalog CI --- .forgejo/workflows/ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .forgejo/workflows/ci.yml diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml new file mode 100644 index 0000000..7d5bfe4 --- /dev/null +++ b/.forgejo/workflows/ci.yml @@ -0,0 +1,13 @@ +name: ci +on: + push: + pull_request: +jobs: + catalog: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: "3.12" + - run: python3 -c "import json; json.load(open('catalog/endpoints.json')); json.load(open('catalog/schema.json'))"