Skip to content

branch away the top 10 2024 #30

branch away the top 10 2024

branch away the top 10 2024 #30

Workflow file for this run

name: CI pipeline
on:
push:
branches:
- main
- master
workflow_dispatch:
# for security reasons the github actions are pinned to specific release versions
jobs:
link_checker:
name: Link checker
runs-on: ubuntu-24.04
steps:
- name: Checkout markdown
uses: actions/[email protected]
- name: Link Checker
uses: lycheeverse/[email protected]
with:
args: --no-progress --max-retries 5 --exclude-path './docs/introduction/in-the-news.md' './docs/**/*.md'
fail: true
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
md_linter:
name: Lint markdown
runs-on: ubuntu-24.04
steps:
- name: Checkout markdown
uses: actions/[email protected]
- name: Lint markdown
uses: DavidAnson/[email protected]
with:
config: '.markdownlint.yaml'
globs: './docs/**/*.md'
spell_checker:
name: Check spelling
runs-on: ubuntu-24.04
steps:
- name: Checkout markdown
uses: actions/[email protected]
- name: spell_checker
uses: rojopolis/[email protected]