A repository to hold all my GitHub Actions
Choose any action from the list, and add it to you workflow like this:
workflow "Run my action" {
on = "push"
resolves = [ "Nymous action" ]
}
action "Nymous action" {
uses = "nymous/actions/python-tools@master"
args = "black . --check"
}
- Python tools: run commands with a Python environment. Usual tools such as Black, Mypy, Bandit, or Pylint are already installed.
- Detect secrets: scan a repository for secrets, optionally comparing with a baseline.
See each individual README for credits.