From b5973261420ade635d2c38b6cb0e681187a3b6e4 Mon Sep 17 00:00:00 2001 From: Paul Delafosse Date: Tue, 22 Oct 2024 09:56:42 +0200 Subject: [PATCH] ci: use nextest for release job --- .github/workflows/Release.yml | 2 ++ cog.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index a57bbfb..0678fac 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -26,6 +26,8 @@ jobs: override: true components: rustfmt, clippy + - uses: taiki-e/install-action@nextest + - name: Add gpg test key pair run: | gpg --import tests/gpg/public.gpg diff --git a/cog.toml b/cog.toml index 73de380..2c8fdef 100644 --- a/cog.toml +++ b/cog.toml @@ -3,7 +3,7 @@ ignore_merge_commits = true pre_bump_hooks = [ "cargo set-version {{version}}", - "cargo test", + "cargo nextest run", "cargo clippy", "cargo build --release", "cargo fmt --all",