additional tests for add liq disabled #4238
actions.yml
on: pull_request
Contracts
/
Wasm tests
6m 28s
Contracts
/
Test Coverage
3m 57s
Contracts
/
Rust tests
1m 24s
Contracts
/
Clippy linter check
45s
Annotations
6 warnings
[clippy] dex/pair/tests/pair_rs_test.rs#L1792:
dex/pair/tests/pair_rs_test.rs#L1792
warning: useless use of `vec!`
--> dex/pair/tests/pair_rs_test.rs:1792:21
|
1792 | let transfers = vec![
| _____________________^
1793 | | TxTokenTransfer {
1794 | | token_identifier: LOCKED_TOKEN_ID.to_vec(),
1795 | | nonce: 1,
... |
1802 | | },
1803 | | ];
| |_____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_vec
help: you can use an array directly
|
1792 ~ let transfers = [TxTokenTransfer {
1793 + token_identifier: LOCKED_TOKEN_ID.to_vec(),
1794 + nonce: 1,
1795 + value: rust_biguint!(500_000),
1796 + },
1797 + TxTokenTransfer {
1798 + token_identifier: MEX_TOKEN_ID.to_vec(),
1799 + nonce: 0,
1800 + value: rust_biguint!(500_000),
1801 ~ }];
|
|
Contracts / Clippy linter check
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, giraffate/clippy-action@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Contracts / Rust tests
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Contracts / Test Coverage
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/upload-artifact@v3, peter-evans/find-comment@v2, peter-evans/create-or-update-comment@v2. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Contracts / Wasm tests
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/upload-artifact@v3, dawidd6/action-download-artifact@v2, peter-evans/find-comment@v2, peter-evans/create-or-update-comment@v2. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
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", "mxpy_report", "report", "report-markdown".
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
|
25.6 KB |
|
mxpy_report
|
45.6 KB |
|
report
|
3.15 KB |
|
report-markdown
|
2.29 KB |
|