Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
9 changes: 7 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,10 @@ jobs:
- name: Run unittests
run: |
source .venv/bin/activate
coverage run -m pytest
coverage report
pytest --cov=. --cov-report=html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./htmlcov
publish_branch: gh-pages
4 changes: 2 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ims.sso 1.0.0 (2026-06-23)
# ims.sso 1.0.0a1 (2026-06-23)

## Feature

- Add additional documentation images
- Initial development
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "hatchling.build"
name = "ims.sso"
dynamic = ["version"]
requires-python = ">=3.11"
description = "Shibboleth integration and security considerations"
description = "Shibboleth integration for Plone"
classifiers = [
"Framework :: Plone :: 6.1",
"Programming Language :: Python",
Expand Down
Loading