Skip to content

Commit bdbefe1

Browse files
committed
Merge branch 'main' into develop_1
2 parents 1b53c04 + 0296fcb commit bdbefe1

File tree

4 files changed

+32
-0
lines changed

4 files changed

+32
-0
lines changed

.cz.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[tool.commitizen]
2+
name = "cz_conventional_commits"
3+
tag_format = "v$version"
4+
version_scheme = "semver"
5+
version = "0.0.1"
6+
update_changelog_on_bump = true
7+
major_version_zero = true

.gitlab-ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
stages:
2+
- test
3+
4+
test:
5+
variables:
6+
PYTHON_VERSION: "3.11"
7+
image: python:${PYTHON_VERSION}
8+
script:
9+
- pip install --upgrade pip
10+
- pip install ruff
11+
- ruff check --output-format=gitlab .
12+
113
sonarqube-check:
214
image:
315
name: sonarsource/sonar-scanner-cli:latest

.pre-commit-config.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
repos:
2+
- hooks:
3+
- id: commitizen
4+
- id: commitizen-branch
5+
stages:
6+
- push
7+
repo: https://github.com/commitizen-tools/commitizen
8+
rev: v3.13.0

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## Unreleased
2+
3+
### Feat
4+
5+
- master: added sonar check

0 commit comments

Comments
 (0)