Skip to content

Commit de5b1bf

Browse files
committed
remove async-std tests
1 parent 8c3e0c0 commit de5b1bf

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/sqlx.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
runs-on: ubuntu-22.04
2020
strategy:
2121
matrix:
22-
runtime: [async-std, tokio, actix]
2322
tls: [native-tls, rustls]
2423
steps:
2524
- uses: actions/checkout@v4
@@ -29,21 +28,21 @@ jobs:
2928
--manifest-path sqlx-core/Cargo.toml
3029
--no-default-features
3130
--all-targets
32-
--features offline,all-databases,all-types,migrate,runtime-${{ matrix.runtime }}-${{ matrix.tls }}
31+
--features offline,all-databases,all-types,migrate,runtime-tokio-${{ matrix.tls }}
3332
env:
3433
RUSTFLAGS: -D warnings
3534

3635
- run:
3736
cargo check
3837
--no-default-features
3938
--all-targets
40-
--features offline,all-databases,all-types,migrate,runtime-${{ matrix.runtime }}-${{ matrix.tls }},macros
39+
--features offline,all-databases,all-types,migrate,runtime-tokio-${{ matrix.tls }},macros
4140

4241
- run:
4342
cargo check
4443
--no-default-features
4544
--all-targets
46-
--features offline,all-databases,migrate,runtime-${{ matrix.runtime }}-${{ matrix.tls }},macros
45+
--features offline,all-databases,migrate,runtime-tokio-${{ matrix.tls }},macros
4746

4847
test:
4948
name: Unit Test

0 commit comments

Comments
 (0)