Skip to content

Commit ed48ac8

Browse files
authored
Merge pull request #2 from numberly/ci/commitizen
Ci/commitizen
2 parents 16944b7 + 9227056 commit ed48ac8

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.github/workflows/ruff.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: ruff
2+
on: push
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v4
8+
- name: Install Python
9+
uses: actions/setup-python@v5
10+
with:
11+
python-version: "3.11"
12+
- name: Install dependencies
13+
run: |
14+
python -m pip install --upgrade pip
15+
pip install ruff
16+
- name: Run Ruff
17+
run: ruff check --output-format=github .

pyproject.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 = "$version"
4+
version_scheme = "semver"
5+
version = "0.0.1"
6+
update_changelog_on_bump = true
7+
major_version_zero = true

0 commit comments

Comments
 (0)