We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a81b48e commit 93623f2Copy full SHA for 93623f2
.github/workflows/ci.yml
@@ -0,0 +1,39 @@
1
+name: pyschematron
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+permissions:
10
+ contents: read
11
12
+jobs:
13
+ build:
14
+ runs-on: ubuntu-latest
15
+ strategy:
16
+ matrix:
17
+ python: ["3.10", "3.11", "3.12"]
18
+ fail-fast: false
19
20
+ steps:
21
+ - uses: actions/checkout@v4
22
23
+ - name: Setup Python
24
+ uses: actions/setup-python@v5
25
+ with:
26
+ python-version: ${{ matrix.python }}
27
+ cache: pip
28
29
+ - name: Set up Python 3.10
30
+ uses: actions/setup-python@v3
31
32
33
+ - name: Install dependencies
34
+ run: |
35
+ python -m pip install --upgrade pip
36
+ pip install -e .
37
+ - name: test
38
39
+ make test
0 commit comments