chore: keep sub-package pyproject.toml standalone; overlay in-repo zarr from just #820
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check changelog entries | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check-changelogs: | |
| name: Check changelog entries | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@bec219d24cd3e171d82865faccec33120bb574f4 # v10.1.0 | |
| - name: Install just | |
| uses: extractions/setup-crate@7577c1bdf2d95e6d65d532788f35ed79d4b1dda2 # v2.0.1 | |
| with: | |
| repo: casey/just | |
| version: 1.58.0 | |
| - name: Check zarr-python changelog entries | |
| run: just check-changelogs | |
| - name: Check zarr-metadata changelog entries | |
| run: just check-changelogs packages/zarr-metadata/changes | |
| - name: Check zarr-indexing changelog entries | |
| run: just check-changelogs packages/zarr-indexing/changes | |
| - name: Check zarr-http-server changelog entries | |
| run: just check-changelogs packages/zarr-http-server/changes |