-
Notifications
You must be signed in to change notification settings - Fork 15
40 lines (32 loc) · 1.08 KB
/
ci-config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# 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