Skip to content
This repository has been archived by the owner on Jun 12, 2024. It is now read-only.

kernel

kernel #19

Workflow file for this run

name: Check markdown links
on:
workflow_dispatch:
schedule:
- cron: '0 0 1 * *' # Every month
push:
branches:
- main
paths:
- 'docs/**'
- '.github/workflows/linkcheck.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
linkcheck:
env:
DIR: 'docs'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: jupyterbook.yml
init-shell: bash
cache-environment: true
post-cleanup: all
- name: Build website
shell: micromamba-shell {0}
run: jupyter-book build ${DIR} --builder linkcheck