diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 3176c269a..f0e01d793 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -14,6 +14,8 @@ on: - ibc-clients/** - ibc-primitives/** - ibc-query/** + - ibc-testkit/** + - ibc-derive/** push: branches: - main diff --git a/.github/workflows/cw-check.yaml b/.github/workflows/cw-check.yaml index 8455a187e..bd5e003e8 100644 --- a/.github/workflows/cw-check.yaml +++ b/.github/workflows/cw-check.yaml @@ -3,6 +3,8 @@ on: pull_request: paths: - .github/workflows/cw-check.yml + - Cargo.toml + - Cargo.lock - ci/cw-check/** push: tags: @@ -22,7 +24,6 @@ on: - ibc-data-types/** - ibc-clients/** - ibc-primitives/** - - ibc-query/** - ibc-derive/** jobs: cw-check: diff --git a/.github/workflows/no-std.yaml b/.github/workflows/no-std.yaml index 90a3b8e09..130b0f7a1 100644 --- a/.github/workflows/no-std.yaml +++ b/.github/workflows/no-std.yaml @@ -13,6 +13,7 @@ on: - ibc-data-types/** - ibc-clients/** - ibc-primitives/** + - ibc-derive/** push: branches: main paths: @@ -27,6 +28,7 @@ on: - ibc-data-types/** - ibc-clients/** - ibc-primitives/** + - ibc-derive/** jobs: check-no-std-panic-conflict: name: Check no_std panic conflict diff --git a/ci/cw-check/rust-toolchain.toml b/ci/cw-check/rust-toolchain.toml index 0ce1c5cca..50431042f 100644 --- a/ci/cw-check/rust-toolchain.toml +++ b/ci/cw-check/rust-toolchain.toml @@ -1,5 +1,5 @@ [toolchain] -channel = "nightly-2023-03-09" +channel = "nightly-2024-02-24" targets = [ "wasm32-unknown-unknown", ]