We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08465ee commit 1494c5dCopy full SHA for 1494c5d
1 file changed
.github/workflows/sqlx.yml
@@ -50,27 +50,16 @@ jobs:
50
test:
51
name: Unit Test
52
runs-on: ubuntu-24.04
53
- strategy:
54
- matrix:
55
- runtime: [
56
- # Disabled because of https://github.com/rust-lang/cargo/issues/12964
57
- # async-std,
58
- # actix,
59
- tokio,
60
- ]
61
- tls: [
62
- # native-tls,
63
- rustls,
64
65
steps:
66
- uses: actions/checkout@v4
67
- uses: Swatinem/rust-cache@v2
68
with:
69
prefix-key: v1-sqlx
70
save-if: ${{ false }}
+ - run: apt-get update && apt-get install -y libodbc2 unixodbc-dev
71
- run: cargo test
72
--manifest-path sqlx-core/Cargo.toml
73
- --features offline,all-databases,all-types,runtime-${{ matrix.runtime }}-${{ matrix.tls }}
+ --features offline,all-databases,all-types,runtime-tokio-rustls
74
75
cli:
76
name: CLI Binaries
0 commit comments