Workflow updates to be prez 4 compliant #1
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: Validate Vocabs on PRs to Master | |
| on: | |
| pull_request: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Bring in repo - master branch | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: master | |
| - name: Install UV and Prezmanifest | |
| run: | | |
| curl -LsSf https://astral.sh/uv/install.sh | sh | |
| uv tool install prezmanifest | |
| - name: Validate all vocabs with Prezmanifest | |
| run: | | |
| pm validate manifest.ttl |