We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67e6578 commit d07b564Copy full SHA for d07b564
.github/workflows/python.yaml
@@ -0,0 +1,22 @@
1
+name: Test Python
2
+on: [push]
3
+jobs:
4
+ build:
5
+ runs-on: ubuntu-latest
6
+ strategy:
7
+ matrix:
8
+ python-version: ['3.10']
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - name: Set up Python ${{ matrix.python-version }}
12
+ uses: actions/setup-python@v2
13
+ with:
14
+ python-version: ${{ matrix.python-version }}
15
+ - name: Install dependencies
16
+ run: |
17
+ python -m pip install --upgrade pip
18
+ pip install jsonschema
19
+ - name: Test
20
21
+ cd python
22
+ python mof.py
0 commit comments