fix: test now waits for build stage to complete
All checks were successful
First CI / build (push) Successful in 1m39s
First CI / test (push) Successful in 10s

This commit is contained in:
mykola-derevianko
2025-11-21 11:07:10 +01:00
parent f31664fc64
commit 6d15c223da

View File

@@ -18,12 +18,13 @@ jobs:
with: with:
name: app name: app
path: app.tar path: app.tar
test: test:
runs-on: ubuntu-latest needs: build
steps: runs-on: ubuntu-latest
- uses: actions/download-artifact@v3 steps:
with: - uses: actions/download-artifact@v3
name: app with:
- run: tar xf app.tar name: app
- run: chmod +x app/app - run: tar xf app.tar
- run: ./app/app - run: chmod +x app/app
- run: ./app/app