Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
f8dc241
ci: migrate to semantic-release
Aug 18, 2025
2dfd324
docs(dev): remove design reports
Aug 26, 2025
c6d9976
chore: set the static version number
Aug 26, 2025
6658bad
chore(ci): remove old workflows
Aug 26, 2025
23876c8
Merge pull request #54 from LittleCoinCoin/cicd/version-bump-on-main
LittleCoinCoin Aug 26, 2025
587f6da
chore: fix hatch version pin to `v0.5.1`
Aug 26, 2025
a152601
test: updating the list of mcp commands
Aug 26, 2025
2beab4e
test: add test tag `requires_api_key`
Aug 26, 2025
f1ab80d
test: fixing tests of LLMProvider interface
Aug 26, 2025
b4013f6
test: transitioned regression tests for versioning
Aug 26, 2025
28a4091
test: fixed retrieval of api key for a feature test
Aug 26, 2025
d535bd1
Merge pull request #1 from LittleCoinCoin/tests/fixing-for-v0.4.2
LittleCoinCoin Aug 26, 2025
d376dad
test: fix import from `toml` to `tomli`
Aug 26, 2025
89b6be2
ci(test): fix test running command for ci
Aug 26, 2025
86bc444
Merge pull request #2 from LittleCoinCoin/tests/fixing-for-v0.4.2
LittleCoinCoin Aug 26, 2025
0dfba4e
test: fixing expected IO mode for `tomli.load`
Aug 26, 2025
18f6c84
Merge pull request #3 from LittleCoinCoin/tests/fixing-for-v0.4.2
LittleCoinCoin Aug 26, 2025
52906b2
Merge pull request #55 from LittleCoinCoin/dev
LittleCoinCoin Aug 26, 2025
913625f
chore(release): 1.0.0-dev.1 [skip ci]
semantic-release-bot Aug 26, 2025
ee5b4ba
chore(changelog): fix the start version
Aug 26, 2025
0868e04
ci: increase `body-max-line-length` to 500
Aug 26, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .commitlintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"extends": ["@commitlint/config-conventional"],
"rules": {
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test"
]
],
"subject-case": [2, "never", ["start-case", "pascal-case", "upper-case"]],
"subject-empty": [2, "never"],
"subject-full-stop": [2, "never", "."],
"header-max-length": [2, "always", 72],
"body-max-line-length": [2, "always", 500]
}
}
46 changes: 0 additions & 46 deletions .github/workflows/commit_version_tag.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Commit Lint

on:
pull_request:
branches: [main, dev]

jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"

- name: Install dependencies
run: npm ci

- name: Validate PR commits with commitlint
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose
106 changes: 0 additions & 106 deletions .github/workflows/feature-fix.yml

This file was deleted.

86 changes: 0 additions & 86 deletions .github/workflows/release.yml

This file was deleted.

62 changes: 62 additions & 0 deletions .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Semantic Release

on:
push:
branches:
- main
- dev

permissions:
contents: write
issues: write
pull-requests: write
id-token: write

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'

- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -e .

- name: Run tests
run: python run_tests.py --regression --feature --skip requires_api_key

release:
needs: test
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"

- name: Install Node dependencies
run: npm ci

- name: Verify npm audit
run: npm audit signatures

- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx semantic-release
Loading