From 4b42e9491a8dfcd4f9837f7ee8a38b0608bdf467 Mon Sep 17 00:00:00 2001 From: belltalion Date: Thu, 25 Sep 2025 17:38:30 +0900 Subject: [PATCH 1/5] Fix action script --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e7332bc8..b720de84 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -20,8 +20,8 @@ jobs: uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 - - name: Cargo tarpaulin - run: cargo install cargo-tarpaulin + - name: Cargo tarpaulin and fmt + run: cargo install cargo-tarpaulin cargo-fmt - uses: pnpm/action-setup@v4 name: Install pnpm with: From 25951d898e36b87f169ae32d969cf68c76a20480 Mon Sep 17 00:00:00 2001 From: belltalion Date: Thu, 25 Sep 2025 17:44:44 +0900 Subject: [PATCH 2/5] Fix action script --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b720de84..24be96a4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,7 +21,7 @@ jobs: - uses: actions-rust-lang/setup-rust-toolchain@v1 - name: Cargo tarpaulin and fmt - run: cargo install cargo-tarpaulin cargo-fmt + run: cargo install cargo-tarpaulin rustfmt - uses: pnpm/action-setup@v4 name: Install pnpm with: From d7e6649ae4c00d90ed6d95132dbe2af01fbe32da Mon Sep 17 00:00:00 2001 From: belltalion Date: Thu, 25 Sep 2025 17:46:11 +0900 Subject: [PATCH 3/5] Fix action script --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 24be96a4..685cfdd1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,7 +21,7 @@ jobs: - uses: actions-rust-lang/setup-rust-toolchain@v1 - name: Cargo tarpaulin and fmt - run: cargo install cargo-tarpaulin rustfmt + run: cargo install cargo-tarpaulin rustfmt --force - uses: pnpm/action-setup@v4 name: Install pnpm with: From 49e59124d021b84d4a7c36659a72a59871072894 Mon Sep 17 00:00:00 2001 From: belltalion Date: Thu, 25 Sep 2025 17:55:36 +0900 Subject: [PATCH 4/5] Fix action script --- .github/workflows/publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 685cfdd1..848b79b3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,7 +21,9 @@ jobs: - uses: actions-rust-lang/setup-rust-toolchain@v1 - name: Cargo tarpaulin and fmt - run: cargo install cargo-tarpaulin rustfmt --force + run: | + cargo install cargo-tarpaulin + rustup component add rustfmt - uses: pnpm/action-setup@v4 name: Install pnpm with: From 668eab3a9459fed891ad75c31618edf773df7f21 Mon Sep 17 00:00:00 2001 From: belltalion Date: Thu, 25 Sep 2025 17:59:14 +0900 Subject: [PATCH 5/5] Fix action script --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 848b79b3..13a79205 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -23,7 +23,7 @@ jobs: - name: Cargo tarpaulin and fmt run: | cargo install cargo-tarpaulin - rustup component add rustfmt + rustup component add rustfmt clippy - uses: pnpm/action-setup@v4 name: Install pnpm with: