git-copilot-commit 0.1.3__tar.gz → 0.1.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- git_copilot_commit-0.1.4/.github/workflows/ci.yml +44 -0
- {git_copilot_commit-0.1.3 → git_copilot_commit-0.1.4}/PKG-INFO +1 -1
- {git_copilot_commit-0.1.3 → git_copilot_commit-0.1.4}/pyproject.toml +1 -1
- {git_copilot_commit-0.1.3 → git_copilot_commit-0.1.4}/src/git_copilot_commit/git.py +1 -1
- {git_copilot_commit-0.1.3 → git_copilot_commit-0.1.4}/uv.lock +1 -1
- {git_copilot_commit-0.1.3 → git_copilot_commit-0.1.4}/.gitignore +0 -0
- {git_copilot_commit-0.1.3 → git_copilot_commit-0.1.4}/.python-version +0 -0
- {git_copilot_commit-0.1.3 → git_copilot_commit-0.1.4}/LICENSE +0 -0
- {git_copilot_commit-0.1.3 → git_copilot_commit-0.1.4}/README.md +0 -0
- {git_copilot_commit-0.1.3 → git_copilot_commit-0.1.4}/src/git_copilot_commit/__init__.py +0 -0
- {git_copilot_commit-0.1.3 → git_copilot_commit-0.1.4}/src/git_copilot_commit/cli.py +0 -0
- {git_copilot_commit-0.1.3 → git_copilot_commit-0.1.4}/src/git_copilot_commit/py.typed +0 -0
- {git_copilot_commit-0.1.3 → git_copilot_commit-0.1.4}/src/git_copilot_commit/settings.py +0 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [main]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [main]
|
|
8
|
+
release:
|
|
9
|
+
types: [published]
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
test:
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v4
|
|
16
|
+
|
|
17
|
+
- name: Install uv
|
|
18
|
+
uses: astral-sh/setup-uv@v6
|
|
19
|
+
|
|
20
|
+
- name: Install the project
|
|
21
|
+
run: uv sync --locked --all-extras --dev
|
|
22
|
+
|
|
23
|
+
- name: Run linting
|
|
24
|
+
run: uvx ruff check
|
|
25
|
+
|
|
26
|
+
- name: Run type checking
|
|
27
|
+
run: uvx ty check
|
|
28
|
+
|
|
29
|
+
publish:
|
|
30
|
+
if: github.event_name == 'release' && github.event.action == 'published'
|
|
31
|
+
runs-on: ubuntu-latest
|
|
32
|
+
steps:
|
|
33
|
+
- uses: actions/checkout@v4
|
|
34
|
+
|
|
35
|
+
- name: Install uv
|
|
36
|
+
uses: astral-sh/setup-uv@v6
|
|
37
|
+
|
|
38
|
+
- name: Install the project
|
|
39
|
+
run: uv sync --locked --all-extras --dev
|
|
40
|
+
|
|
41
|
+
- name: Build and publish package
|
|
42
|
+
run: |
|
|
43
|
+
uv build
|
|
44
|
+
uv publish --token ${{ secrets.PYPI_TOKEN }}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|