Replace reflect.DeepEqual with newly introduced comparator.Equal #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: Lychee Config Check | |
| on: | |
| pull_request: | |
| paths: | |
| - '.github/lychee.toml' | |
| push: | |
| paths: | |
| - '.github/lychee.toml' | |
| jobs: | |
| check-lychee-config: | |
| runs-on: ubuntu-latest | |
| name: Validate Lychee Config | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - name: Lychee Config Checker | |
| id: lychee | |
| uses: lycheeverse/lychee-action@82202e5e9c2f4ef1a55a3d02563e1cb6041e5332 # v2.4.1 | |
| with: | |
| args: "--verbose --config .github/lychee.toml --dump .github/lychee.toml" | |
| failIfEmpty: false |