diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-11-24 15:50:49 +0100 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-11-24 16:11:12 +0100 |
| commit | 1a6e6d024ee4fb96b433da6eac702ddde9296747 (patch) | |
| tree | 984c9ace6c00a1a9f3028f4110741fdb01ad04fe | |
| parent | 4427fd14f2f0965ddad7f35661b6c66c5363822e (diff) | |
Workflows: Bump go version and use latest linter
| -rw-r--r-- | .github/workflows/test.yml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 82fc63a..83f36a2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,12 +10,13 @@ jobs: steps: - uses: actions/setup-go@v3 with: - go-version: ^1.15 + go-version: ^1.17 - uses: actions/checkout@v3 - name: Run golangci-lint - uses: golangci/golangci-lint-action@v3.2.0 - with: - args: ./... -E stylecheck + uses: golangci/golangci-lint-action@v3 + with: + version: latest + args: -E stylecheck test-go: name: Test Go @@ -34,7 +35,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: - go-version: ^1.15 + go-version: ^1.17 - run: make - uses: actions/upload-artifact@v3 with: |
