From 6f01f7b9b32ff838c41161ef12bbced3c9cd938e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Bergstro=CC=88m?= Date: Sat, 20 Mar 2021 14:39:50 -0300 Subject: [PATCH] doc: small comment about performance Since we don't need Docker, we will likely be on par or faster than other github actions. --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index c940a11..5157356 100644 --- a/README.md +++ b/README.md @@ -41,3 +41,7 @@ If `output_format` is set, the github action variable `hadolint_output` will be ## Robustness Also known as "can I run this in production". The action itself is tested via CI for all its use cases as well as unit tests for each function. Additionally, `shellcheck` is run against all shell scripts. Releases are cut manually (for now) and the action will strictly follow semver with regards to breaking functionality or options. + +## Performance + +Due to staying with bash we can avoid Docker-related performance penalties. Yet to be benchmarked, but it is likely on par or faster than other hadolint actions.