mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-01 01:27:17 +00:00
29 lines
549 B
YAML
29 lines
549 B
YAML
kind: pipeline
|
|
type: exec
|
|
name: default
|
|
|
|
steps:
|
|
- name: Run Tests and Generate Coverage Report
|
|
commands:
|
|
- nix flake check -L
|
|
- sonar-scanner -Dsonar.projectKey=SelfPrivacy-REST-API -Dsonar.sources=. -Dsonar.host.url=http://analyzer.lan:9000 -Dsonar.login="$SONARQUBE_TOKEN"
|
|
environment:
|
|
SONARQUBE_TOKEN:
|
|
from_secret: SONARQUBE_TOKEN
|
|
|
|
|
|
- name: Run Bandit Checks
|
|
commands:
|
|
- bandit -ll -r selfprivacy_api
|
|
|
|
- name: Run Code Formatting Checks
|
|
commands:
|
|
- black --check .
|
|
|
|
node:
|
|
server: builder
|
|
|
|
trigger:
|
|
event:
|
|
- push
|