fix workflow references

This commit is contained in:
2024-02-28 15:05:35 +01:00
parent 23743a23b9
commit 3c47578809
2 changed files with 5 additions and 5 deletions

View File

@@ -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'

View File

@@ -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'