From f31664fc64ef3c30fb595c3413a974c7642b5ee9 Mon Sep 17 00:00:00 2001 From: mykola-derevianko Date: Fri, 21 Nov 2025 11:04:11 +0100 Subject: [PATCH] fix: test now is on the same level as build stage --- .gitea/workflows/ci.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 0bfd32f..7c07304 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -18,12 +18,12 @@ 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: + 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