Skip to content

Commit cc5e011

Browse files
committed
- ci: added GitHub Actions workflow .github/workflows/tests.yml to run bash Script/unittest.sh on push and pull_request with Python 3.10, 3.11, and 3.12.
1 parent eb9c894 commit cc5e011

File tree

3 files changed

+33
-1
lines changed

3 files changed

+33
-1
lines changed

.github/workflows/tests.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Tests
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
unit-tests:
9+
name: Unit tests (Python ${{ matrix.python-version }})
10+
runs-on: ubuntu-latest
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
python-version: ["3.10", "3.11", "3.12"]
15+
16+
steps:
17+
- name: Checkout repository
18+
uses: actions/checkout@v4
19+
20+
- name: Set up Python
21+
uses: actions/setup-python@v5
22+
with:
23+
python-version: ${{ matrix.python-version }}
24+
25+
- name: Install dependencies
26+
run: |
27+
python -m pip install --upgrade pip
28+
pip install pyserial
29+
30+
- name: Run unit tests
31+
run: bash Script/unittest.sh

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.1
1+
0.2.2

version.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Version History (English)
22

33
## 2026-02-19
4+
- ci: added GitHub Actions workflow `.github/workflows/tests.yml` to run `bash Script/unittest.sh` on `push` and `pull_request` with Python 3.10, 3.11, and 3.12.
45
- docs: rewrote `README.md` with accurate manual run, service install, configuration, and test instructions.
56
- docs: added `agents.md` contributor/operator guide with validation and versioning policy.
67
- versioning: added `VERSION` file to store current semantic version.

0 commit comments

Comments
 (0)