selfprivacy-rest-api/.drone.yml

29 lines
549 B
YAML
Raw Normal View History

2021-12-06 19:12:30 +00:00
kind: pipeline
type: exec
2021-12-06 19:11:04 +00:00
name: default
2021-12-06 19:12:30 +00:00
2021-12-06 19:11:04 +00:00
steps:
- name: Run Tests and Generate Coverage Report
2021-12-06 19:11:04 +00:00
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
2022-12-27 04:10:14 +00:00
- name: Run Bandit Checks
commands:
- bandit -ll -r selfprivacy_api
- name: Run Code Formatting Checks
commands:
- black --check .
node:
server: builder
2023-06-23 10:02:52 +00:00
trigger:
event:
- push