Commit 5eaf287
Migrate to uv and add GitHub CI workflow (#4)
* Migrate from Poetry to uv and add CI pipeline
- Convert pyproject.toml from Poetry to standard PEP 621 format
- Add pytest as a dev dependency
- Create basic test structure with initial tests
- Add GitHub Actions CI workflow that runs pytest on Python 3.8
- Remove poetry.lock and add uv.lock to .gitignore
- CI runs on ubuntu, windows, and macos to ensure cross-platform compatibility
* Disable uv cache in CI workflow
Since uv.lock is not committed to the repository, the cache option
should be disabled to avoid build failures.
* Skip project installation in CI workflow
This is a Sublime Text plugin, not a traditional Python package,
so we use --no-install-project flag to only install dependencies
without trying to install the project itself.
---------
Co-authored-by: Claude <[email protected]>1 parent b0804dc commit 5eaf287
File tree
6 files changed
+73
-373
lines changed- .github/workflows
- tests
6 files changed
+73
-373
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
84 | 84 | | |
85 | 85 | | |
86 | 86 | | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
87 | 90 | | |
88 | 91 | | |
89 | 92 | | |
| |||
0 commit comments