test runner
Some checks failed
Build and Deploy Flask App / setup (push) Failing after 35s
Build and Deploy Flask App / test (push) Has been skipped
Build and Deploy Flask App / build-and-push (push) Has been skipped
Build and Deploy Flask App / deploy (push) Has been skipped

This commit is contained in:
Norvicdev 2026-08-04 18:48:06 +03:00
parent 977238fe7d
commit ad8ba72f71

View file

@ -19,7 +19,7 @@ env:
jobs:
# ========== НОВАЯ ЗАДАЧА: просто проверяет, что код есть ==========
setup:
runs-on: ubuntu-latest
runs-on: docker
steps:
- name: Checkout code
uses: actions/checkout@v4
@ -28,7 +28,7 @@ jobs:
test:
needs: setup # ← теперь зависит от setup
runs-on: ubuntu-latest
runs-on: docker
steps:
- name: Checkout code
uses: actions/checkout@v4
@ -54,7 +54,7 @@ jobs:
build-and-push:
needs: test # ← зависит от test
runs-on: ubuntu-latest
runs-on: docker
if: github.event_name == 'push'
steps:
@ -94,7 +94,7 @@ jobs:
deploy:
needs: build-and-push # ← зависит от build-and-push
runs-on: ubuntu-latest
runs-on: docker
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
steps: