Skip to content

Commit 93623f2

Browse files
feat: add github ci
1 parent a81b48e commit 93623f2

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.github/workflows/ci.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: pyschematron
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
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+
with:
32+
python-version: ${{ matrix.python }}
33+
- name: Install dependencies
34+
run: |
35+
python -m pip install --upgrade pip
36+
pip install -e .
37+
- name: test
38+
run: |
39+
make test

0 commit comments

Comments
 (0)