From cda0b2485160d749e1a1a4e9a67452fd047a95ae Mon Sep 17 00:00:00 2001 From: Sugui Date: Mon, 1 Jan 2024 16:34:17 +0100 Subject: [PATCH] Restored initial working workflow --- .gitea/workflows/test.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 1c19ffb..7c64ca0 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -5,12 +5,10 @@ on: [pull_request] jobs: unit-test: container: - image: docker - services: - - docker:dind + image: docker:dind steps: - - name: ps - run: ps + - name: Starting docker daemon + run: docker-init -- dockerd --host=unix:///var/run/docker.sock & - name: Installing necessary packages run: apk add npm git curl bash - name: Check out repository code