This is an automated email from the ASF dual-hosted git repository.
JingsongLi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/paimon-full-text.git
The following commit(s) were added to refs/heads/main by this push:
new ee83ca7 Test Python 3.8 compatibility in CI (#19)
ee83ca7 is described below
commit ee83ca70f03f3b9851ec2758ee575a1566014659
Author: jianguotian <[email protected]>
AuthorDate: Tue Aug 4 12:20:58 2026 +0800
Test Python 3.8 compatibility in CI (#19)
---
.github/workflows/ci.yml | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 4002984..6bab476 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -165,6 +165,10 @@ jobs:
python:
runs-on: ubuntu-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ python-version: ['3.8', '3.12']
steps:
- uses: actions/checkout@v4
@@ -182,7 +186,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
- python-version: '3.12'
+ python-version: ${{ matrix.python-version }}
- name: Build FFI library
run: cargo build --release -p paimon-ftindex-ffi