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'))"