This commit is contained in:
parent
0e10f51bff
commit
835ae7cad1
@ -88,4 +88,13 @@ jobs:
|
||||
- name: Test package installation
|
||||
run: |
|
||||
# Test that the package can be imported
|
||||
python -c "import pyWebLayout; print('Package imported successfully')"
|
||||
python -c "import pyWebLayout; print('Package imported successfully')"
|
||||
|
||||
- name: Commit coverage badges
|
||||
if: github.ref == 'refs/heads/main'
|
||||
run: |
|
||||
git config --local user.email "action@gitea.local"
|
||||
git config --local user.name "Gitea Action"
|
||||
git add coverage*.svg
|
||||
git diff --staged --quiet || git commit -m "Update coverage badges [skip ci]"
|
||||
git push
|
||||
@ -1,8 +1,11 @@
|
||||
# PyWebLayout
|
||||
|
||||

|
||||

|
||||
|
||||
| Badge | Description |
|
||||
|-------|-------------|
|
||||
|  | **Test Coverage** - Percentage of code covered by unit tests |
|
||||
|  | **Documentation Coverage** - Percentage of code with docstrings |
|
||||
|  | **Build Status** - Current CI/CD pipeline status |
|
||||
|  | **License** - Project licensing information |
|
||||
A Python library for HTML-like layout and rendering.
|
||||
|
||||
## Description
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user