Skip to content

init-1: rework the first part about the kernel initialization #30

init-1: rework the first part about the kernel initialization

init-1: rework the first part about the kernel initialization #30

Workflow file for this run

name: check links
on:
workflow_dispatch:
push:
branches:
- main
- master
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
check-links:
name: check-links
runs-on:
- ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Check links with lychee
uses: lycheeverse/lychee-action@v2
with:
# Check README.md and all files in Booting directory
args: |
--verbose
--no-progress
--max-retries 3
--timeout 20
README.md
'Booting/*.md'
fail: true
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}