Attempt fixing ci

This commit is contained in:
2024-02-28 15:03:54 +01:00
parent e2450247e7
commit 23743a23b9
10 changed files with 34 additions and 8 deletions

View File

View File

@@ -6,16 +6,16 @@ on:
jobs:
lint:
uses: ./.github/workflows/CI/go_lint.yml
uses: ./.github/workflows/go_lint.yml
with:
working-directory: 'auth-service'
build:
needs: lint
uses: ./.github/workflows/CI/go_build.yml
uses: ./.github/workflows/go_build.yml
with:
working-directory: 'auth-service'
test:
needs: build
uses: ./.github/workflows/CI/go_test.yml
uses: ./.github/workflows/go_test.yml
with:
working-directory: 'auth-service'

View File

@@ -6,16 +6,16 @@ on:
jobs:
lint:
uses: ./CI/go_lint.yml
uses: ./go_lint.yml
with:
working-directory: 'backend'
build:
needs: lint
uses: ./CI/go_build.yml
uses: ./go_build.yml
with:
working-directory: 'backend'
test:
needs: build
uses: ./CI/go_test.yml
uses: ./go_test.yml
with:
working-directory: 'backend'

View File

@@ -6,11 +6,11 @@ on:
jobs:
lint:
uses: ./CI/go_lint.yml
uses: ./go_lint.yml
with:
working-directory: 'backend'
build:
needs: lint
uses: ./CI/go_build.yml
uses: ./go_build.yml
with:
working-directory: 'backend'

13
.github/workflows/svelte_build.yml vendored Normal file
View File

@@ -0,0 +1,13 @@
on:
workflow_call:
inputs:
working-directory:
required: true
type: string
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

13
.github/workflows/svelte_lint.yml vendored Normal file
View File

@@ -0,0 +1,13 @@
on:
workflow_call:
inputs:
working-directory:
required: true
type: string
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4