automation of badges
Python CI / test (push) Successful in 41s

This commit is contained in:
2025-06-07 15:50:48 +02:00
parent 0e10f51bff
commit 835ae7cad1
2 changed files with 16 additions and 4 deletions
+10 -1
View File
@@ -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