From 877208a28f3d804f1e81afad0b0055cbe2b8d38c Mon Sep 17 00:00:00 2001 From: Eduardo Arango Date: Thu, 29 Aug 2019 07:33:17 -0500 Subject: [PATCH] Add GoLinty https://github.com/marketplace/actions/go-linty GitHub action to run Go lint checks on PR event De-linting is a time-consuming process. The aim of LINTY is to support an iterative process to clear out lint. It uses a configuration file which lists packages that currently contain lint, and ensures that: packages listed in the configuration are removed once they are free of lint packages not listed in the configuration continue to be free of lint If either of the above statements is FALSE, LINTY prints out a warning and exits. If both statements are TRUE, LINTY prints out a table of lint counts for the packages that are listed in its configuration. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c583c32..fca605d 100644 --- a/README.md +++ b/README.md @@ -137,6 +137,7 @@ An example: `https://github.com/sdras/awesome-actions/workflows/Lint%20Awesome%2 - [Run codeception tests](https://github.com/joelwmale/codeception-action) - [Audit a webpage with Google Chrome's Lighthouse tests](https://github.com/jakejarvis/lighthouse-action) - [Run `localheinz/composer-normalize` to ensure your PHP project has a normalized `composer.json`](https://github.com/localheinz/composer-normalize-action) +- [Run Go lint checks on PR event](https://github.com/ArangoGutierrez/GoLinty-Action) ### Pull Requests