Added a few photos of my two DDK units; added a photo of a real pre-release version of the XSX Devkit #197
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 |