Skip to content

Commit 90bb0bb

Browse files
committed
Add ODBC dependencies installation step in CI workflow for enhanced database support
1 parent c02cd94 commit 90bb0bb

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ jobs:
2727
- uses: actions/checkout@v4
2828
- run: npm ci
2929
- run: npm test
30+
- name: Install ODBC dependencies
31+
run: |
32+
sudo apt-get update
33+
sudo apt-get install -y unixodbc-dev freetds-dev
3034
- name: Set up cargo cache
3135
uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6
3236
- run: cargo fmt --all -- --check
@@ -77,7 +81,7 @@ jobs:
7781
RUST_BACKTRACE: 1
7882
- name: Upload Windows binary
7983
uses: actions/upload-artifact@v4
80-
with:
84+
with:
8185
name: sqlpage-windows-debug
8286
path: "target/debug/sqlpage.exe"
8387

0 commit comments

Comments
 (0)