mirror of
https://github.com/vcscsvcscs/GenerationsHeritage.git
synced 2025-08-13 22:39:06 +02:00
Create ci for subprojects
This commit is contained in:
21
.github/workflows/auth-service-ci.yml
vendored
Normal file
21
.github/workflows/auth-service-ci.yml
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
name: Authentication service Continuous Integration
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- "auth-service/**"
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
uses: ./.github/workflows/CI/go_lint.yml
|
||||
with:
|
||||
working-directory: 'auth-service'
|
||||
build:
|
||||
needs: lint
|
||||
uses: ./.github/workflows/CI/go_build.yml
|
||||
with:
|
||||
working-directory: 'auth-service'
|
||||
test:
|
||||
needs: build
|
||||
uses: ./.github/workflows/CI/go_test.yml
|
||||
with:
|
||||
working-directory: 'auth-service'
|
21
.github/workflows/backend-ci.yml
vendored
Normal file
21
.github/workflows/backend-ci.yml
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
name: Backend Continuous Integration
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- "backend/**"
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
uses: ./.github/workflows/CI/go_lint.yml
|
||||
with:
|
||||
working-directory: 'backend'
|
||||
build:
|
||||
needs: lint
|
||||
uses: ./.github/workflows/CI/go_build.yml
|
||||
with:
|
||||
working-directory: 'backend'
|
||||
test:
|
||||
needs: build
|
||||
uses: ./.github/workflows/CI/go_test.yml
|
||||
with:
|
||||
working-directory: 'backend'
|
5
.github/workflows/cd.yml
vendored
5
.github/workflows/cd.yml
vendored
@@ -1,5 +0,0 @@
|
||||
name: Continuous Deployment
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -1,2 +0,0 @@
|
||||
name: Continuous Integration
|
||||
on: push
|
16
.github/workflows/frontend-ci.yml
vendored
Normal file
16
.github/workflows/frontend-ci.yml
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
name: Frontend Continuous Integration
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- "frontend/**"
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
uses: ./.github/workflows/CI/go_lint.yml
|
||||
with:
|
||||
working-directory: 'backend'
|
||||
build:
|
||||
needs: lint
|
||||
uses: ./.github/workflows/CI/go_build.yml
|
||||
with:
|
||||
working-directory: 'backend'
|
Reference in New Issue
Block a user