File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -24,12 +24,14 @@ jobs:
24
24
strategy :
25
25
matrix :
26
26
flags :
27
- - --cfg async_executor_impl=\ "async-std\ " --cfg async_channel_impl=\ "async-std\"
28
- - --cfg async_executor_impl=\ "async-std\ " --cfg async_channel_impl=\ "flume\ "
29
- - --cfg async_executor_impl=\ "tokio\ " --cfg async_channel_impl=\ "tokio\ "
30
- - --cfg async_executor_impl=\ "tokio\ " --cfg async_channel_impl=\ "flume\ "
27
+ - --cfg async_executor_impl="async-std" --cfg async_channel_impl="async-std"
28
+ - --cfg async_executor_impl="async-std" --cfg async_channel_impl="flume"
29
+ - --cfg async_executor_impl="tokio" --cfg async_channel_impl="tokio"
30
+ - --cfg async_executor_impl="tokio" --cfg async_channel_impl="flume"
31
31
runs-on : ubuntu-latest
32
32
timeout-minutes : 60
33
+ env :
34
+ RUSTFLAGS : ${{ matrix.flags }}
33
35
steps :
34
36
- name : Checkout Repository
35
37
uses : actions/checkout@v4
@@ -43,15 +45,15 @@ jobs:
43
45
44
46
- name : Build
45
47
run : |
46
- RUSTFLAGS="${{ matrix.flags }}" cargo build --all-targets --workspace --release --features="logging-utils"
48
+ cargo build --all-targets --workspace --release --features="logging-utils"
47
49
48
50
- name : Test
49
51
run : |
50
- RUSTFLAGS="${{ matrix.flags }}" cargo test --all-targets --workspace --release --features="logging-utils"
52
+ cargo test --all-targets --workspace --release --features="logging-utils"
51
53
52
54
- name : Lint
53
55
run : |
54
- RUSTFLAGS="${{ matrix.flags }}" cargo clippy --workspace --all-targets --bins --tests --examples --features="logging-utils" -- -D warnings
56
+ cargo clippy --workspace --all-targets --bins --tests --examples --features="logging-utils" -- -D warnings
55
57
56
58
- name : Check semver
57
59
uses : obi1kenobi/cargo-semver-checks-action@v2
You can’t perform that action at this time.
0 commit comments