Use GitHub Actions#1029
Open
jmsmtn wants to merge 24 commits intoIdentityPython:masterfrom
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Use GitHub Actions
I think that Travis CI is no longer used, since I think Travis CI stopped supporting open source projects sometime in 2020. This PR seeks to replace Travis CI with GitHub Actions.
While /pull/816 exists, it is fairly old. This PR tries to revive that effort in order to make this project easier to contribute to, maintain, and release.
What your changes do and why you chose this solution
This PR introduces some GitHub Action workflows:
tests.yml- Run tests for Python versions 3.9 to 3.14. This doesn't usetox, but if needed I can easily change it to usetox.checks.yml- for miscellaneous checks - right now to check that Poetry and it's lockfile is in a good statelints.yml- Runsblack,isort, andflake8.blackandisortformats. Theflake8job will not fail, currently. It has some 200 items to resolve so I thought it would be best to make that a separate PR.release-github.yml- Handle github releaseszizmor.yml- Warn on any security issues with GitHub actions. I recently read Github Actions is the weakest link so some of these workflows have been changed for security reasons.release-pypi.yml- Handle pypi and testpypi deployments. Tested with at Use GitHub Actions jmsmtn/pysaml2#1 and in test pypi and pypiChecklist