Skip to content

Commit aa02704

Browse files
authored
Create GitHub action to check implementations.json (#120)
1 parent f366698 commit aa02704

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/check.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: check
2+
on: [push]
3+
jobs:
4+
check:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
- name: Set up Python 3
9+
uses: actions/setup-python@v1
10+
- name: Install dependencies
11+
run: pip install jsonschema
12+
- name: Run check.py
13+
run: ./check.py

0 commit comments

Comments
 (0)