HdMapUtils refactor (PR 3/6) - use lanelet_wrapper wide in in behavior_tree_plugin, remove unused methods #6023
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: Documentation link check | |
on: | |
repository_dispatch: | |
workflow_dispatch: | |
schedule: | |
- cron: 0 0 * * * | |
pull_request: | |
jobs: | |
linkChecker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check documentation link | |
id: lychee | |
uses: lycheeverse/[email protected] | |
with: | |
fail: true | |
args: "--verbose --no-progress './**/*.md' './**/*.html' --timeout 1000 --max-concurrency 32 -T 1 --retry-wait-time 10" | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |