Skip to content

typo in index.bs example token #158

typo in index.bs example token

typo in index.bs example token #158

Workflow file for this run

# Workflow for verifying bikeshed documents processing
name: Verify processing
on:
# only concerned with gating PRs to the main branch
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Bikeshed
run: |
pipx install bikeshed
bikeshed update
- name: Generate HTML
run: for bsdoc in ./*.bs ./**/*.bs; do bikeshed spec $bsdoc; done
- name: Generate SVG
run: for diagram in ./*.mmd primer/*.mmd; do docker run --rm -v "$PWD:/data" minlag/mermaid-cli -i /data/$diagram; done