From 4b8b04f29c6d20afcedccf28ee5f4d4b46a5eab0 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Wed, 16 Jul 2025 09:41:34 +0200 Subject: [PATCH] =?UTF-8?q?Removed=20unnecessary=20'cymais'=20pr=C3=A4fix?= =?UTF-8?q?=20from=20github=20workflow=20command?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test-container.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-container.yml b/.github/workflows/test-container.yml index 364d9b02..60605d35 100644 --- a/.github/workflows/test-container.yml +++ b/.github/workflows/test-container.yml @@ -20,12 +20,12 @@ jobs: - name: Clean build artifacts run: | - docker run --rm cymais:latest cymais make clean + docker run --rm cymais:latest make clean - name: Generate project outputs run: | - docker run --rm cymais:latest cymais make build + docker run --rm cymais:latest make build - name: Run tests run: | - docker run --rm cymais:latest cymais make test + docker run --rm cymais:latest make test