├── .github ├── CODEOWNERS ├── FUNDING.yml ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── bb.edn ├── entrypoint.clj ├── test └── entrypoint │ └── entrypoint_test.clj └── test_runner.clj /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | @pilosus 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pilosus/action-pip-license-checker/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pilosus/action-pip-license-checker/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pilosus/action-pip-license-checker/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pilosus/action-pip-license-checker/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pilosus/action-pip-license-checker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pilosus/action-pip-license-checker/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pilosus/action-pip-license-checker/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pilosus/action-pip-license-checker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pilosus/action-pip-license-checker/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pilosus/action-pip-license-checker/HEAD/action.yml -------------------------------------------------------------------------------- /bb.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pilosus/action-pip-license-checker/HEAD/bb.edn -------------------------------------------------------------------------------- /entrypoint.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pilosus/action-pip-license-checker/HEAD/entrypoint.clj -------------------------------------------------------------------------------- /test/entrypoint/entrypoint_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pilosus/action-pip-license-checker/HEAD/test/entrypoint/entrypoint_test.clj -------------------------------------------------------------------------------- /test_runner.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pilosus/action-pip-license-checker/HEAD/test_runner.clj --------------------------------------------------------------------------------