Skip to content

Create markdown-lint.yml #2

Create markdown-lint.yml

Create markdown-lint.yml #2

Workflow file for this run

name: MkDocs Build
on:
pull_request:
push:
branches:
- master
- develop
- feature/*
jobs:
mkdocs-build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install mkdocs-material
pip install -r requirements.txt
- name: Build MkDocs site
run: mkdocs build --strict