Skip to content

Commit 3f7641a

Browse files
committed
Merge branch 'main' into odbc-fetch-batch
2 parents 52fc57c + bfa05eb commit 3f7641a

File tree

19 files changed

+189
-147
lines changed

19 files changed

+189
-147
lines changed

.github/workflows/sqlx.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,19 @@ jobs:
4848
-- -D warnings
4949
5050
test:
51-
name: Unit Test
52-
runs-on: ubuntu-24.04
51+
name: Unit Test ${{ matrix.os }}
52+
strategy:
53+
matrix:
54+
os: [ubuntu-latest, windows-latest]
55+
runs-on: ${{ matrix.os }}
5356
steps:
5457
- uses: actions/checkout@v4
5558
- uses: Swatinem/rust-cache@v2
5659
with:
5760
prefix-key: v1-sqlx
5861
save-if: ${{ false }}
5962
- run: sudo apt-get update && sudo apt-get install -y libodbc2 unixodbc-dev
63+
if: ${{ matrix.os == 'ubuntu-latest' }}
6064
- run: cargo test
6165
--manifest-path sqlx-core/Cargo.toml
6266
--features offline,all-databases,all-types,runtime-tokio-rustls

0 commit comments

Comments
 (0)