├── .github ├── actions │ ├── fast-checkout │ │ ├── action.yml │ │ └── bin │ │ │ └── main │ └── latest-git │ │ └── action.yml └── workflows │ ├── main.yml │ ├── self-test.yml │ └── tox.yml ├── .pre-commit-config.yaml ├── README.md ├── setup.cfg └── tox.ini /.github/actions/fast-checkout/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/workflows/HEAD/.github/actions/fast-checkout/action.yml -------------------------------------------------------------------------------- /.github/actions/fast-checkout/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/workflows/HEAD/.github/actions/fast-checkout/bin/main -------------------------------------------------------------------------------- /.github/actions/latest-git/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/workflows/HEAD/.github/actions/latest-git/action.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/workflows/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/self-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/workflows/HEAD/.github/workflows/self-test.yml -------------------------------------------------------------------------------- /.github/workflows/tox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/workflows/HEAD/.github/workflows/tox.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/workflows/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/workflows/HEAD/README.md -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/workflows/HEAD/setup.cfg -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/workflows/HEAD/tox.ini --------------------------------------------------------------------------------