Our main goal is to provide tools for maintainers working on Python 2 projects.
Workflows:
- pip-compile-upgrade
- pre-commit-autoupdate
- pre-commit
- pylint
- pypi-upload
- tox-docker
- tox-envs
- tox-gh
- tox
GitHub action for running pip-compile upgrade
on your Python 2 and 3
requirements.
Inputs:
path
(string
): A file or location of the requirement file(s).python-version
(string
): Python version to use for installingpip-tools
. You may use MAJOR.MINOR or exact version. Defaults to'3.12'
. Optional.pr-create
(string
): Whether to create a Pull Request. Options:'yes'
,'no'
. Defaults to'yes'
. Optional.pr-commit-message
(string
): Use the given message as the commit message. Defaults to'chore(requirements): pip-compile upgrade'
. Optional.pr-auto-merge
(string
): Automatically merge only after necessary requirements are met. Options:'yes'
,'no'
. Defaults to'yes'
. Optional.sign-commits
(string
): Whether to sign Git commits. Options:'yes'
,'no'
. Defaults to'yes'
. Optional.
Secrets:
gh-token
(secret
): GitHub token. Required when creating PRs, otherwise is optional.gpg-sign-passphrase
(secret
): GPG private key passphrase. Required when signing commits, otherwise is optional.gpg-sign-private-key
(secret
): GPG private key exported as an ASCII armored version. Required when signing commits, otherwise is optional.
Example:
name: pip-compile-upgrade
on:
schedule:
- cron: '0 20 * * 1'
workflow_dispatch:
jobs:
pip-compile-upgrade:
uses: coatl-dev/workflows/.github/workflows/pip-compile-upgrade.yml@v3.0.2
with:
path: requirements.txt
secrets:
gh-token: ${{ secrets.GH_TOKEN }}
gpg-sign-passphrase: ${{ secrets.GPG_PASSPHRASE }}
gpg-sign-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
If you [cannot/do not want to] benefit from pre-commit.ci
, use this workflow
to install Python and invoke pre-commit autoupdate
.
Inputs:
pr-base-branch
(string
): The branch into which you want your code merged. Defaults to'main'
. Required whenpr-create
is set to'yes'
, otherwise is optional.pr-create
(string
): Whether to create a Pull Request. Options:'yes'
,'no'
. Defaults to'yes'
. Optional.pr-auto-merge
(string
): Automatically merge only after necessary requirements are met. Options:'yes'
,'no'
. Defaults to'yes'
. Optional.sign-commits
(string
): Whether to sign Git commits. Options:'yes'
,'no'
. Defaults to'yes'
. Optional.skip-repos
(string
): A list of repos to exclude from autoupdate. The repos must be separated by a "pipe" character'|'
. Defaults to''
. Optional.
Secrets:
gh-token
(secret
): GitHub token. Required when creating PRs, otherwise is optional.gpg-sign-passphrase
(secret
): GPG private key passphrase. Required when signing commits, otherwise is optional.gpg-sign-private-key
(secret
): GPG private key exported as an ASCII armored version. Required when signing commits, otherwise is optional.
Example:
name: pre-commit-autoupdate
on:
schedule:
- cron: '0 20 * * 1'
workflow_dispatch:
jobs:
pre-commit-autoupdate:
uses: coatl-dev/workflows/.github/workflows/pre-commit-autoupdate.yml@v3.0.2
with:
skip-repos: 'flake8'
secrets:
gh-token: ${{ secrets.GH_TOKEN }}
gpg-sign-passphrase: ${{ secrets.GPG_PASSPHRASE }}
gpg-sign-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
If you [cannot/do not want to] benefit from pre-commit.ci
, use this workflow
to install Python and invoke pre-commit
.
Inputs:
skip-hooks
(list[string
]): A comma separated list of hook ids which will be disabled. Useful when yourpre-commit-config.yaml
file containslocal hooks
. Optional. See: Temporarily disabling hooks.
Example:
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/pre-commit.yml@v3.0.2
with:
skip-hooks: 'pylint'
This workflow will install Python and invoke pylint
to analyze your code.
Example:
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/pylint.yml@v3.0.2
This workflow allows you to build and upload your Python distribution packages
PyPI (or any other repository) using build
and twine
.
Inputs:
python-version
(string
): The Python version to use for building and publishing the package. You may use MAJOR.MINOR or exact version. Defaults to'3.12'
. Optionalcheck
(boolean
): Check metadata with twine before uploading. Defaults totrue
. Optional.url
(string
): The repository (package index) URL to upload the package to. Defaults to'https://upload.pypi.org/legacy/'
. Optional.username
(string
): The username to authenticate to the repository (package index) as. Defaults to'__token__'
. Optional.
Secrets:
password
(secret
): The password to authenticate to the repository (package index) with. This can also be a token. Required.
Example:
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/pypi-upload.yml@v3.0.2
with:
python-version: '3.11'
secrets:
password: ${{ secrets.PYPI_API_TOKEN }}
This workflow will install the latest version of tox
to run all envs found in
env_list
.
Inputs:
python-version
(string
): The Python version to use for building and publishing the package. You may use MAJOR.MINOR or exact version. Defaults to'3.12'
. Optional
Note
This workflow uses the coatldev/six:3.12
Docker image, which comes with
Python 2.7 and 3.12.
Example:
[tox]
requires =
virtualenv<20.22.0
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/tox-docker.yml@v3.0.2
This workflow will install Python and invoke tox envs based on the list of Python versions.
Inputs:
python-versions
(list[string
]): A list of Python versions passed through toactions/setup-python
'spython-version
. Required.
This action sets the proper tox
env based on the Python version. For example:
'3.10'
will run py310
, '3.9'
will run py39
and so forth.
Recommendations:
When testing end-of-life Python, e.g. 2.7, you need to add the following
requires
statement to your tox.ini
configuration file:
[tox]
requires =
virtualenv<20.22.0
Example:
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/tox-envs.yml@v3.0.2
with:
python-versions: '["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]'
This workflow will install Python and tox-gh
and it will run the matching
tox
environment based on the gh
configuration section found in tox.ini
.
Inputs:
python-versions
(list[string
]): A list of Python versions passed through toactions/setup-python
'spython-version
. Required.
Important
The latest tox-gh
release requires python>=3.7
.
Example:
tox.ini:
[gh]
python =
3.7 = py37
3.8 = py38
3.9 = py39
3.10 = py310, install, typecheck
3.11 = py311
3.12 = py312
and on your workflow:
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/tox-gh.yml@v3.0.2
with:
python-versions: '["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]'
This workflow will install Python and invoke tox
to run all envs found in
env_list
.
Example:
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/tox.yml@v3.0.2