Skip to content

ci: update allocation workflow (#18) #717

ci: update allocation workflow (#18)

ci: update allocation workflow (#18) #717

Workflow file for this run

name: "Validations"
on:
# needed for publishing commit images on the main branch
push:
branches:
- main
# needed when running from forks
pull_request:
permissions:
contents: read
jobs:
validate-schema:
name: "Validate Schema"
runs-on: ubuntu-latest
container:
image: python:3.14-alpine
permissions:
contents: read
steps:
- name: Install OS dependencies
run: apk add --no-cache taplo
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd #v6.0.2
with:
persist-credentials: false
- name: Run schema validation
run: taplo validate --schema file:${PWD}/schema/0.1.0.schema.json
- name: Run format validation
run: taplo format --check