Skip to content

Money: Rename cents to minor units, ISO 4217 exponent-aware formattin… #2

Money: Rename cents to minor units, ISO 4217 exponent-aware formattin…

Money: Rename cents to minor units, ISO 4217 exponent-aware formattin… #2

Workflow file for this run

name: Docs
on:
push:
branches: [ "main" ]
paths:
- "docs/**"
- "mkdocs.yml"
- ".github/workflows/docs.yml"
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
cache-dependency-path: .github/workflows/docs.yml
- name: Install mkdocs-material
run: pip install mkdocs-material==9.*
- name: Build (strict)
run: mkdocs build --strict
- name: Deploy to GitHub Pages
run: mkdocs gh-deploy --force