Skip to content

Blog post on UML and the Strategy Design Pattern #144

Blog post on UML and the Strategy Design Pattern

Blog post on UML and the Strategy Design Pattern #144

Workflow file for this run

name: CI checks
on:
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: poetry
- name: Install dependencies
run: poetry install
- name: Check that documentation builds cleanly with MkDocs
run: poetry run mkdocs build --strict