From e2450247e7371e38cf675ecd6331ae12d79ed2c3 Mon Sep 17 00:00:00 2001 From: Vargha Csongor Date: Wed, 28 Feb 2024 14:54:56 +0100 Subject: [PATCH] test different workflow reference --- .github/workflows/auth-service-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/auth-service-ci.yml b/.github/workflows/auth-service-ci.yml index 6b18cba..7593e16 100644 --- a/.github/workflows/auth-service-ci.yml +++ b/.github/workflows/auth-service-ci.yml @@ -6,16 +6,16 @@ on: jobs: lint: - uses: ./CI/go_lint.yml + uses: ./.github/workflows/CI/go_lint.yml with: working-directory: 'auth-service' build: needs: lint - uses: ./CI/go_build.yml + uses: ./.github/workflows/CI/go_build.yml with: working-directory: 'auth-service' test: needs: build - uses: ./CI/go_test.yml + uses: ./.github/workflows/CI/go_test.yml with: working-directory: 'auth-service' \ No newline at end of file