Githhub Actions version
asinghgaba opened this issue ยท 4 comments
Hi ๐ I had a few questions regarding the CI tests:
Is there a reason not to test python 3.9 in CI tests? https://github.com/drvinceknight/Nashpy/blob/main/.github/workflows/config.yml
Also, instead of calling tox like this:
python -m tox -e py38
We can set up tox-gh-actions https://github.com/ymyzk/tox-gh-actions, to automatically assign tox environments according to the python version and simply call:
python -m tox
And lastly, is there any particular reason to use actions/checkout@v1? v2 is now stable and can be used safely. (Same for setup-python)
Is there a reason not to test python 3.9 in CI tests? https://github.com/drvinceknight/Nashpy/blob/main/.github/workflows/config.yml
I tried 3.9 and it failed to be there but I would very much like to test against 3.9
Also, instead of calling tox like this:
python -m tox -e py38
We can set up tox-gh-actions https://github.com/ymyzk/tox-gh-actions, to automatically assign tox environments according to the python version and simply call:
python -m tox
This is a great idea, I wasn't aware of this.
And lastly, is there any particular reason to use actions/checkout@v1? v2 is now stable and can be used safely. (Same for setup-python)
No good reason at all :) I just wasn't aware that v2
was stable.
PRs against any/all of the above would be great if that's something you'd like to contribute?
Okay, no problem I'll open a PR.
Awesome!
If/when you do please add yourself to https://github.com/drvinceknight/Nashpy/blob/main/docs/contributing/reference/contributors/index.rst (if you want to). It's a list of contributors I've started as part of a big push to improve the contributor documentation. (I wrote this tutorial for example: https://nashpy.readthedocs.io/en/latest/contributing/tutorial/index.html)