We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52682a8 commit fe03658Copy full SHA for fe03658
1 file changed
.github/workflows/ci.yml
@@ -12,6 +12,7 @@ jobs:
12
strategy:
13
matrix:
14
python-version: ["3.10", "3.11", "3.12", "3.13"]
15
+ excel-dbapi-version: ["0.4.1", "latest", "main"]
16
17
steps:
18
- uses: actions/checkout@v6
@@ -23,6 +24,13 @@ jobs:
23
24
25
- name: Install dependencies
26
run: |
27
+ if [ "${{ matrix.excel-dbapi-version }}" = "0.4.1" ]; then
28
+ pip install excel-dbapi==0.4.1
29
+ elif [ "${{ matrix.excel-dbapi-version }}" = "main" ]; then
30
+ pip install git+https://github.com/yeongseon/excel-dbapi.git@main
31
+ else
32
+ pip install excel-dbapi
33
+ fi
34
pip install -e ".[dev,graph]"
35
36
- name: Lint
0 commit comments