Add CI
This commit is contained in:
parent
8cacde72a5
commit
f756df2e50
3 changed files with 159 additions and 0 deletions
26
.github/workflows/check_great_ai.yml
vendored
Normal file
26
.github/workflows/check_great_ai.yml
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
name: Check library
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- dev
|
||||
paths:
|
||||
- "projects/great_ai/**"
|
||||
- ".github/workflows/*"
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
uses: ./.github/workflows/generic-lint-node.yml
|
||||
with:
|
||||
path_to_project: projects/great_ai
|
||||
|
||||
sonar:
|
||||
needs: lint
|
||||
uses: ./.github/workflows/generic-sonarqube-node.yml
|
||||
with:
|
||||
project_name: great_ai
|
||||
path_to_project: projects/great_ai
|
||||
secrets:
|
||||
sonar_token: ${{ secrets.SONAR_TOKEN }}
|
||||
sonar_host: ${{ secrets.SONAR_HOST_URL }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue