Skip to content

Merge branch 'main' into main #21

Merge branch 'main' into main

Merge branch 'main' into main #21

# Simple workflow for testing mkdocs build
name: Test building TLP:CLEAR content
on: [push, pull_request, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip' # caching pip dependencies
- name: install mkdocs
run: pip install -r requirements.txt
- name: run mdformat
run: mdformat .
- name: build site
run: python -m mkdocs build --strict