Generic Command Interface Refactor #126
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: check-links | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - release-* | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| check-links: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| # Allow validation of links to files in the valkey-glide submodule. | |
| submodules: true | |
| - name: Check links | |
| uses: lycheeverse/lychee-action@v2.7.0 | |
| with: | |
| args: --config lychee.toml . | |
| fail: true |