Skip to content

feat: IBC test framework support Axon #525

feat: IBC test framework support Axon

feat: IBC test framework support Axon #525

Triggered via pull request August 24, 2023 13:48
Status Cancelled
Total duration 1h 5m 9s
Artifacts

guide-templates.yaml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

11 errors and 5 warnings
redundant pattern matching, consider using `is_err()`: crates/relayer/src/chain.rs#L76
error: redundant pattern matching, consider using `is_err()` --> crates/relayer/src/chain.rs:76:17 | 76 | assert!(matches!(parse("hello-world"), Err(_))); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `parse("hello-world").is_err()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern_matching = note: `#[deny(clippy::redundant_pattern_matching)]` implied by `#[deny(warnings)]`
this `if` branch is empty: crates/relayer/src/chain/cosmos.rs#L458
error: this `if` branch is empty --> crates/relayer/src/chain/cosmos.rs:458:9 | 458 | if prove {} | ^^^^^^^^^^^ help: you can remove it | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_if = note: `#[deny(clippy::needless_if)]` implied by `#[deny(warnings)]`
this `if` branch is empty: crates/relayer/src/chain/cosmos.rs#L458
error: this `if` branch is empty --> crates/relayer/src/chain/cosmos.rs:458:9 | 458 | if prove {} | ^^^^^^^^^^^ help: you can remove it | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_if = note: `#[deny(clippy::needless_if)]` implied by `#[deny(warnings)]`
unnecessary hashes around raw string literal: crates/relayer/src/error.rs#L747
error: unnecessary hashes around raw string literal --> crates/relayer/src/error.rs:747:20 | 747 | Regex::new(r#"account sequence mismatch, expected (?P<expected>\d+), got (?P<got>\d+)"#) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `r"account sequence mismatch, expected (?P<expected>\d+), got (?P<got>\d+)"` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes note: the lint level is defined here --> crates/relayer/src/lib.rs:3:5 | 3 | warnings, | ^^^^^^^^ = note: `#[deny(clippy::needless_raw_string_hashes)]` implied by `#[deny(warnings)]`
unnecessary hashes around raw string literal: crates/relayer/src/error.rs#L747
error: unnecessary hashes around raw string literal --> crates/relayer/src/error.rs:747:20 | 747 | Regex::new(r#"account sequence mismatch, expected (?P<expected>\d+), got (?P<got>\d+)"#) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `r"account sequence mismatch, expected (?P<expected>\d+), got (?P<got>\d+)"` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes note: the lint level is defined here --> crates/relayer/src/lib.rs:3:5 | 3 | warnings, | ^^^^^^^^ = note: `#[deny(clippy::needless_raw_string_hashes)]` implied by `#[deny(warnings)]`
redundant pattern matching, consider using `is_err()`: crates/relayer/src/chain.rs#L76
error: redundant pattern matching, consider using `is_err()` --> crates/relayer/src/chain.rs:76:17 | 76 | assert!(matches!(parse("hello-world"), Err(_))); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `parse("hello-world").is_err()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern_matching = note: `#[deny(clippy::redundant_pattern_matching)]` implied by `#[deny(warnings)]`
this `if` branch is empty: crates/relayer/src/chain/cosmos.rs#L458
error: this `if` branch is empty --> crates/relayer/src/chain/cosmos.rs:458:9 | 458 | if prove {} | ^^^^^^^^^^^ help: you can remove it | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_if = note: `#[deny(clippy::needless_if)]` implied by `#[deny(warnings)]`
this `if` branch is empty: crates/relayer/src/chain/cosmos.rs#L458
error: this `if` branch is empty --> crates/relayer/src/chain/cosmos.rs:458:9 | 458 | if prove {} | ^^^^^^^^^^^ help: you can remove it | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_if = note: `#[deny(clippy::needless_if)]` implied by `#[deny(warnings)]`
unnecessary hashes around raw string literal: crates/relayer/src/error.rs#L747
error: unnecessary hashes around raw string literal --> crates/relayer/src/error.rs:747:20 | 747 | Regex::new(r#"account sequence mismatch, expected (?P<expected>\d+), got (?P<got>\d+)"#) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `r"account sequence mismatch, expected (?P<expected>\d+), got (?P<got>\d+)"` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes note: the lint level is defined here --> crates/relayer/src/lib.rs:3:5 | 3 | warnings, | ^^^^^^^^ = note: `#[deny(clippy::needless_raw_string_hashes)]` implied by `#[deny(warnings)]`
unnecessary hashes around raw string literal: crates/relayer/src/error.rs#L747
error: unnecessary hashes around raw string literal --> crates/relayer/src/error.rs:747:20 | 747 | Regex::new(r#"account sequence mismatch, expected (?P<expected>\d+), got (?P<got>\d+)"#) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `r"account sequence mismatch, expected (?P<expected>\d+), got (?P<got>\d+)"` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes note: the lint level is defined here --> crates/relayer/src/lib.rs:3:5 | 3 | warnings, | ^^^^^^^^ = note: `#[deny(clippy::needless_raw_string_hashes)]` implied by `#[deny(warnings)]`
template-checker
The operation was canceled.
template-checker
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
template-checker
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
template-checker
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
template-checker
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
template-checker
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/