We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74a7ef4 commit 3ca8428Copy full SHA for 3ca8428
.github/workflows/test.yml
@@ -7,6 +7,15 @@ on:
7
pull_request:
8
9
jobs:
10
+ build:
11
+ runs-on: ubuntu-18.04
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - uses: actions/setup-python@v3
15
+ with:
16
+ python-version: 3.x
17
+ - name: Build spec without warnings
18
+ run: ./scripts/build.sh --install
19
cddl:
20
runs-on: ubuntu-18.04
21
steps:
scripts/build.sh
@@ -0,0 +1,11 @@
1
+#! /bin/bash
2
+set -ex
3
+
4
+SCRIPT_DIR=$(cd $(dirname "$0") && pwd -P)
5
+ROOT=$(dirname $SCRIPT_DIR)
6
+if [ "$1" = "--install" ]; then
+ pip install bikeshed
+fi
+bikeshed --die-on=warning spec index.bs
0 commit comments