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 0d94cb6 commit 978d72fCopy full SHA for 978d72f
.github/workflows/main.yml
@@ -3,6 +3,22 @@ name: build
3
on: [push]
4
5
jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+
10
+ - uses: actions/checkout@master
11
12
+ - name: Setting up python 3.12
13
+ uses: actions/setup-python@v5
14
+ with:
15
+ python-version: '3.12'
16
17
+ - name: Validate schema
18
+ run: |
19
+ python -m pip install check-jsonschema
20
+ check-jsonschema --check-metaschema schemas/qwc-map-viewer.json
21
22
build:
23
runs-on: ubuntu-latest
24
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
0 commit comments