diff --git a/.github/workflows/backend-ci.yml b/.github/workflows/backend-ci.yml index eb2b79f..a06f224 100644 --- a/.github/workflows/backend-ci.yml +++ b/.github/workflows/backend-ci.yml @@ -6,16 +6,16 @@ on: jobs: lint: - uses: ./go_lint.yml + uses: ./.github/workflows/go_lint.yml with: working-directory: 'backend' build: needs: lint - uses: ./go_build.yml + uses: ./.github/workflows/go_build.yml with: working-directory: 'backend' test: needs: build - uses: ./go_test.yml + uses: ./.github/workflows/go_test.yml with: working-directory: 'backend' \ No newline at end of file diff --git a/.github/workflows/frontend-ci.yml b/.github/workflows/frontend-ci.yml index 9c6b682..3028cef 100644 --- a/.github/workflows/frontend-ci.yml +++ b/.github/workflows/frontend-ci.yml @@ -6,11 +6,11 @@ on: jobs: lint: - uses: ./go_lint.yml + uses: ./.github/workflows/go_lint.yml with: working-directory: 'backend' build: needs: lint - uses: ./go_build.yml + uses: ./.github/workflows/go_build.yml with: working-directory: 'backend'