Skip to content

chore(ci): Update Pixi #6643

chore(ci): Update Pixi

chore(ci): Update Pixi #6643

Workflow file for this run

name: Test Schema
on:
push:
branches:
- main
paths-ignore:
- "docs/**"
- "zensical.toml"
- "*.md"
workflow_dispatch:
pull_request:
paths:
- "**/pixi.toml"
- "schema/**"
- "**/schema.yml"
permissions:
contents: read
jobs:
test-schema:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
with:
persist-credentials: false
- uses: prefix-dev/setup-pixi@f00437f565399d418b0acc85936d12c1fb668347 # v0.10.1
with:
cache-write: ${{ github.ref == 'refs/heads/main' }}
environments: schema
- name: Ensure schema is up-to-date
run: |
pixi run -e schema generate-schema
git diff --exit-code
- name: Test Schema
run: |
pixi run -e schema test-schema
git diff --exit-code