From b5539a5c73a7de7a3a4bed3ce3026af411fc7839 Mon Sep 17 00:00:00 2001 From: zephinzer <6473605+zephinzer@users.noreply.github.com> Date: Sun, 24 Dec 2023 02:21:13 +0800 Subject: [PATCH] removed binary build verification since its implicit as part of make image --- .github/workflows/test.yml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1e35466..d6532e7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -54,28 +54,6 @@ jobs: path: ./internal/docs - name: Run tests run: make test - build-binary: - runs-on: ubuntu-latest - needs: [setup] - steps: - - name: Check out repository code - uses: actions/checkout@v3 - - name: Initialise Go - uses: actions/setup-go@v4 - with: - go-version: '>=1.20.0' - - name: Restore dependencies - uses: actions/cache/restore@v3 - with: - key: dependencies - path: ./vendor - - name: Restore Swagger documentation - uses: actions/cache/restore@v3 - with: - key: swagger-documentation - path: ./internal/docs - - name: Build binary - run: make binary build-docker-image: runs-on: ubuntu-latest needs: [setup]