Skip to content

Commit 28687ab

Browse files
feat: enhance README and CI configuration
- Added badges for CI/CD pipeline, code coverage, Python version, and license to `README.md`. - Updated CI configuration in `.github/workflows/ci.yml` to include a matrix for Python versions and improved setup steps for Python environment. - Introduced a coverage threshold check in the testing job and added pip-audit for dependency vulnerability scanning in the security job.
1 parent f3a781a commit 28687ab

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ env:
1212
UV_VERSION: "0.8.13"
1313
MIN_COVERAGE: 0
1414
PYTHON_VERSION: "3.13" # Default Python version for non-matrix jobs
15-
PYTHON_VERSIONS: '["3.9", "3.10", "3.11", "3.12", "3.13"]' # Python versions for matrix testing
1615

1716
jobs:
1817
lint:
@@ -66,7 +65,7 @@ jobs:
6665
timeout-minutes: 30
6766
strategy:
6867
matrix:
69-
python-version: ${{ fromJson(env.PYTHON_VERSIONS) }}
68+
python-version: [3.9, 3.10, 3.11, 3.12, 3.13]
7069
os: [ubuntu-latest, macos-latest]
7170

7271
steps:

0 commit comments

Comments
 (0)