File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 30
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