From 80fa636b221b3b182e3aae296214f4f0c7856b61 Mon Sep 17 00:00:00 2001 From: Mathias Pius Date: Thu, 4 Apr 2024 15:20:52 +0200 Subject: [PATCH] Fix error in cargo test call --- .github/workflows/publish.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4ab9b8d..d7d1233 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -99,7 +99,8 @@ jobs: - name: Run unit tests uses: actions-rs/cargo@v1 with: - command: test --lib + command: test + args: --lib - name: Run integration tests uses: actions-rs/cargo@v1 @@ -109,7 +110,8 @@ jobs: HETZNER_INTEGRATION_TEST_SERVER_ID: ${{ secrets.HETZNER_INTEGRATION_TEST_SERVER_ID }} HETZNER_INTEGRATION_TEST_STORAGEBOX_ID: ${{ secrets.HETZNER_INTEGRATION_TEST_STORAGEBOX_ID }} with: - command: test --tests + command: test + args: --tests tag: name: Tag & Publish