-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate CI to Github Actions #100
Conversation
Codecov Report
@@ Coverage Diff @@
## master #100 +/- ##
=======================================
Coverage 89.78% 89.78%
=======================================
Files 2 2
Lines 274 274
Branches 39 39
=======================================
Hits 246 246
Misses 13 13
Partials 15 15 Continue to review full report at Codecov.
|
@@ -1,5 +1,5 @@ | |||
[tox] | |||
envlist = py35,py36,py37,py38,pypy3,lint,docs | |||
envlist = py35,py36,py37,py38,py39,pypy3,lint,docs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added py39 as discussed in the original PR for Azure Pipelines
if: | ||
uses: pypa/gh-action-pypi-publish@master | ||
with: | ||
password: ${{ secrets.PYPI_API_TOKEN }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have minted a new token for this and added it to the repo secrets.
Looks good! I wonder if a bump to the pinned requirements in |
I'll do a follow up PR once this is merged. |
Provide a more accessible and less complex form of CI for this repo. The workflow definition file for Github Actions is more or less similar to Azure Pipelines (not a surprise, given they are likely sharing a lot under the hood given the MSFT acquisition of GitHub)