This repository was archived by the owner on May 27, 2026. It is now read-only.
chore(main): release pgai 0.13.0 #424
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 markdown links | |
| on: | |
| pull_request: | |
| paths: | |
| - "**/*.md" | |
| jobs: | |
| linkcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Link Checker | |
| id: lychee | |
| uses: lycheeverse/lychee-action@v2 | |
| with: | |
| args: --accept '100..=103, 200..=299, 403, 429, 500' --root-dir $(pwd) . | |
| format: markdown | |
| jobSummary: true |