Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump codecov/codecov-action from 4 to 5 #525

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Bump codecov/codecov-action from 4 to 5

637ea76
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Open

Bump codecov/codecov-action from 4 to 5 #525

Bump codecov/codecov-action from 4 to 5
637ea76
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy failed Nov 14, 2024 in 0s

clippy

2 errors

Details

Results

Message level Amount
Internal compiler error 0
Error 2
Warning 0
Note 0
Help 0

Versions

  • rustc 1.83.0-beta.5 (eb6e3fa1a 2024-11-08)
  • cargo 1.83.0-beta.5 (5ffbef321 2024-10-29)
  • clippy 0.1.83 (eb6e3fa 2024-11-08)

Annotations

Check failure on line 254 in packages/cw-orch-neutron-test-tube/src/core.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

mismatched types

error[E0308]: mismatched types
   --> packages/cw-orch-neutron-test-tube/src/core.rs:254:17
    |
249 |             .instantiate(
    |              ----------- arguments to this method are incorrect
...
254 |                 &coins,
    |                 ^^^^^^ expected `&[Coin]`, found `&Vec<Coin>`
    |
    = note: expected reference `&[cosmwasm_std::Coin]`
               found reference `&std::vec::Vec<neutron_test_tube::margined_neutron_std::types::cosmos::base::v1beta1::Coin>`
note: method defined here
   --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/neutron-test-tube-5.0.1/src/module/wasm.rs:51:12
    |
51  |     pub fn instantiate<M>(
    |            ^^^^^^^^^^^

Check failure on line 229 in packages/cw-orch-neutron-test-tube/src/core.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

mismatched types

error[E0308]: mismatched types
   --> packages/cw-orch-neutron-test-tube/src/core.rs:229:59
    |
229 |             .execute(contract_address.as_ref(), exec_msg, &coins, &self.sender)
    |              -------                                      ^^^^^^ expected `&[Coin]`, found `&Vec<Coin>`
    |              |
    |              arguments to this method are incorrect
    |
    = note: expected reference `&[cosmwasm_std::Coin]`
               found reference `&std::vec::Vec<neutron_test_tube::margined_neutron_std::types::cosmos::base::v1beta1::Coin>`
note: method defined here
   --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/neutron-test-tube-5.0.1/src/module/wasm.rs:83:12
    |
83  |     pub fn execute<M>(
    |            ^^^^^^^