Merge pull request #2213 from fpistm/STM32CubeF4_update #180
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: Check Markdown Links | |
# runs every monday at 9 am | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '**.md' | |
pull_request: | |
paths: | |
- '**.md' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
linkinator: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: JustinBeckwith/linkinator-action@v1 | |
with: | |
paths: '*.md ./CI/**/*.md, ./variants/**/*.md, ./libraries/**/*.md' | |
verbosity: 'INFO' | |
skip: 'www.st.com' |