Skip to content

Commit

Permalink
chore: fix ci workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ryancurrah committed Apr 3, 2024
1 parent 3e9c7ba commit 6cfaf2a
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/go.yml
Expand Up @@ -23,9 +23,9 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-go@v3
- uses: actions/setup-go@v5
with:
go-version: stable

Expand All @@ -51,3 +51,19 @@ jobs:
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true

golangci-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-go@v5
with:
go-version: stable

- name: lint
uses: golangci/golangci-lint-action@v4
with:
version: latest
skip-build-cache: true
skip-pkg-cache: true

0 comments on commit 6cfaf2a

Please sign in to comment.