interactor #47
actions.yml
on: pull_request
Contracts
/
Wasm tests
1m 34s
Contracts
/
Interactor tests
3m 49s
Contracts
/
Test Coverage
1m 22s
Contracts
/
Rust tests
1m 13s
Contracts
/
Clippy linter check
51s
Annotations
8 warnings
[clippy] ping-pong/interactor/tests/interact_cs_tests.rs#L28:
ping-pong/interactor/tests/interact_cs_tests.rs#L28
warning: used `assert_eq!` with a literal bool
--> ping-pong/interactor/tests/interact_cs_tests.rs:28:5
|
28 | assert_eq!(true, interactor.did_user_ping(alice.clone()).await);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#bool_assert_comparison
= note: `#[warn(clippy::bool_assert_comparison)]` on by default
help: replace it with `assert!(..)`
|
28 - assert_eq!(true, interactor.did_user_ping(alice.clone()).await);
28 + assert!(interactor.did_user_ping(alice.clone()).await);
|
|
[clippy] ping-pong/interactor/tests/interact_cs_tests.rs#L30:
ping-pong/interactor/tests/interact_cs_tests.rs#L30
warning: used `assert_eq!` with a literal bool
--> ping-pong/interactor/tests/interact_cs_tests.rs:30:5
|
30 | assert_eq!(false, interactor.did_user_ping(mike.clone()).await);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#bool_assert_comparison
help: replace it with `assert!(..)`
|
30 - assert_eq!(false, interactor.did_user_ping(mike.clone()).await);
30 + assert!(!(interactor.did_user_ping(mike.clone()).await));
|
|
Contracts / Clippy linter check
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Contracts / Rust tests
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Contracts / Test Coverage
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Contracts / Wasm tests
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Contracts / Interactor tests
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Deprecation notice: v1, v2, and v3 of the artifact actions
The following artifacts were uploaded using a version of actions/upload-artifact that is scheduled for deprecation: "coverage".
Please update your workflow to use v4 of the artifact actions.
Learn more: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
coverage
|
1.19 KB |
|