Skip to content

Commit 677a920

Browse files
committed
add CI
1 parent 9a999be commit 677a920

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/unittest.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: unittest
2+
3+
on:
4+
push:
5+
paths:
6+
- 'pythoned/**'
7+
- 'tests/**'
8+
- '.github/workflows/unittest.yml'
9+
10+
jobs:
11+
unittest:
12+
runs-on: ubuntu-22.04
13+
14+
strategy:
15+
matrix:
16+
python-version: ['3.7.17', '3.8.18', '3.9.18', '3.10.13', '3.11.7', '3.12.1', '3.13.1', '3.14.0-alpha.3']
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
- name: Set up Python ${{ matrix.python-version }}
21+
uses: actions/setup-python@v4
22+
with:
23+
python-version: ${{ matrix.python-version }}
24+
25+
- name: unittest
26+
run: |
27+
python -m unittest

0 commit comments

Comments
 (0)