Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 424b673

Browse files
committedDec 16, 2024·
feat: test.yml to support test on diff python versions
1 parent 5704fd4 commit 424b673

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
 

‎.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v4
16-
- name: Set up Python 3.12
16+
- name: Set up Python
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: "3.12"
19+
python-version: ["3.13", "3.12", "3.11", "3.10", "3.9", "3.8", "3.7", "3.6"]
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ tests/__pycache__
88
coverage.xml
99
__pycache__
1010
venv
11+
.venv
1112
result.txt
1213
testing/main.c
1314
*/*compile_commands.json

0 commit comments

Comments
 (0)
Please sign in to comment.