Update workflows to use pm 2 #2
Workflow file for this run
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 Develop | |
| on: | |
| pull_request: | |
| branches: [ develop ] | |
| workflow_dispatch: | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Bring in repo - develop branch | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: develop | |
| - 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 |