From 6d15c223da9e243c0df6b04f166c8617b32592b0 Mon Sep 17 00:00:00 2001 From: mykola-derevianko Date: Fri, 21 Nov 2025 11:07:10 +0100 Subject: [PATCH] fix: test now waits for build stage to complete --- .gitea/workflows/ci.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 7c07304..3d0177b 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -18,12 +18,13 @@ jobs: with: name: app path: app.tar - test: - runs-on: ubuntu-latest - steps: - - uses: actions/download-artifact@v3 - with: - name: app - - run: tar xf app.tar - - run: chmod +x app/app - - run: ./app/app + test: + needs: build + runs-on: ubuntu-latest + steps: + - uses: actions/download-artifact@v3 + with: + name: app + - run: tar xf app.tar + - run: chmod +x app/app + - run: ./app/app