diff options
| author | Jacob Oaks <jacoboaks.8@gmail.com> | 2024-04-29 13:50:59 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-29 13:50:59 -0400 |
| commit | 2f37a2a9349f528e1e8d76989e22db4821f4741e (patch) | |
| tree | 9849b70f364867366322dfdde5191d4c2fcf7951 | |
| parent | d7c76afa342c98220281bdadb7fcf2598e48624b (diff) | |
| parent | 9f2ab0b2b6d5764cd138e2fe64590dffe880396d (diff) | |
| download | sally-2f37a2a9349f528e1e8d76989e22db4821f4741e.tar.gz | |
Merge pull request #149 from JacobOaks/joaks/glc_fix
CI: Fix golangci-lint installation step
| -rw-r--r-- | .github/workflows/go.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index e8e084e..8beec33 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -49,7 +49,7 @@ jobs: name: Install golangci-lint with: version: latest - args: --version # make lint will run the linter + args: --help # make lint will run the linter - run: make lint name: Lint |