Skip to content

ci: add workflows of website build and markdown lint #4

ci: add workflows of website build and markdown lint

ci: add workflows of website build and markdown lint #4

Workflow file for this run

name: build
on:
push:
branches:
- '*'
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.13'
- name: Install dependencies
run: pip3 install -r requirements.txt
- name: Build docs
run: |
mkdocs -v build