System Updates: Add Dec 2024, Jan 2025, Feb 2025 #269
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build site | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Install deps | |
run: pip install -U -r requirements.txt | |
- name: Build | |
run: mkdocs build --strict |