From ed9a7c3bed79c820665e1a3ffc33dbbe4dab203e Mon Sep 17 00:00:00 2001 From: ThetaSinner Date: Thu, 20 Jun 2024 03:24:44 +0100 Subject: [PATCH] Add toolchain for stability on CI --- .github/workflows/test.yaml | 2 -- rust-toolchain.toml | 5 +++++ 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 rust-toolchain.toml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 992c128..60bcffb 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -53,8 +53,6 @@ jobs: - name: Run CLI tests working-directory: ./checked_cli run: | - rustup target add wasm32-unknown-unknown - cargo install holochain_cli@0.3.1 npm i diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 0000000..3575179 --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,5 @@ +[toolchain] +channel = "1.77.2" +components = ["rustfmt", "clippy"] +targets = ["wasm32-unknown-unknown"] +profile = "minimal"