Fix: refer to general and special CG meetings #331
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
# Workflow for processing and publishing bikeshed proposals to github pages | |
name: verify proposals | |
on: | |
push: | |
# only concerned with changes in the main branch | |
branches: [ main ] | |
# only invoke when a bikeshed document is updated | |
# paths: [ '*.bs' ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
- name: upgrade pip | |
run: python3 -m pip install --upgrade pip | |
- name: install bikeshed | |
run: | | |
python3 -m pip install --upgrade bikeshed | |
bikeshed update | |
# There are no active bikeshed documents at present | |
#- name: generate html | |
# run: for bsdoc in proposals/**/*.bs; do bikeshed spec $bsdoc; done | |
# There are no active MMD documents at present | |
#- name: generate svg | |
# run: for diagram in proposals/**/*.mmd; do docker run --rm -v "$PWD:/data" minlag/mermaid-cli -i /data/$diagram; done | |