From b90f5ccc64150b5d33075ea64a97ff25b3456e73 Mon Sep 17 00:00:00 2001 From: Brandur Date: Sat, 4 Jan 2020 14:44:09 -0800 Subject: [PATCH] Enable Golint in GitHub Actions This was previously disabled due to some kind of problem related specifically to GitHub Actions. Now that the project is migrated to Go Modules and there's less `vendor/` cruft to worry about, try re-enabling it. --- .github/workflows/ci.yml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 571e04eb6..75546165b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -89,17 +89,8 @@ jobs: - name: "Check: Gofmt" run: make check-gofmt - # Unfortunately there's some oddity in GitHub's environment that causes - # this to fail: - # - # /home/runner/work/_temp/3939b8a1-56f2-4fd9-8434-1950a338feb7.sh: line 1: unexpected EOF while looking for matching `"' - # - # Action is probably to try converting to Go modules first and see if - # that resolves it. - # - # - name: "Check: Golint" - # run: make lint" - # + - name: "Check: Golint" + run: make lint" - name: "Check: Markdown headers" run: make check-headers