Update property names to use kebab-case format and update Spring Boot version #176
This file contains 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 External Links" | |
on: [push, pull_request] | |
jobs: | |
validate-external-links: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Link Checker | |
uses: lycheeverse/lychee-action@v1 | |
with: | |
args: '**/*.java **/*.md **/*.xml **/*.html **/*.yml | |
--verbose --no-progress | |
--exclude localhost | |
--exclude "github\.com/casid/jte/blob" | |
--exclude "@template" | |
--exclude test.com | |
--exclude maven.apache.org | |
--exclude w3.org' | |
jobSummary: true | |
format: markdown | |
fail: true |