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

This commit is contained in:
Norvicdev 2026-08-04 22:08:17 +03:00
parent 47cbbc92cf
commit fa10819073
2 changed files with 19 additions and 7 deletions

View file

@ -71,6 +71,15 @@ jobs:
git clone https://vicsergeev.ru/forgejo/Vic/DummyApp.git .
git checkout ${{ github.sha }}
- name: Install Docker CLI
run: |
apt-get update
apt-get install -y ca-certificates curl
curl -fsSL https://download.docker.com/linux/static/stable/x86_64/docker-26.1.4.tgz -o docker.tgz
tar xzf docker.tgz --strip-components=1 -C /usr/bin docker/docker
rm docker.tgz
docker --version
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3