From 47059ec39c01eb94ad00bbf7c8a761e6fe1a7597 Mon Sep 17 00:00:00 2001 From: Slawomir Koszewski Date: Thu, 5 Mar 2026 05:45:29 +0100 Subject: [PATCH] Simplify test execution by removing redundant chmod command in workflow --- .gitea/workflows/test.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 7f48542..839d5d7 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -11,6 +11,4 @@ jobs: uses: actions/checkout@v6 - name: Run tests - run: | - chmod +x ./run-tests.sh - ./run-tests.sh + run: ./run-tests.sh