Skip to content

Commit

Permalink
fix: upgraded CI workflow, now it use golang v1.22 for test and build
Browse files Browse the repository at this point in the history
Signed-off-by: Vitalii Sydorenko <[email protected]>
  • Loading branch information
vetal2409 committed Mar 8, 2024
1 parent 6b918f4 commit c33ea2a
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,23 @@ on:
- '**'

jobs:

check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: 1.15
go-version: 1.22

- name: Check
run: make check

- name: Lint
uses: golangci/golangci-lint-action@v2
uses: golangci/golangci-lint-action@v4
with:
version: v1.40.1
version: v1.54

- name: Test
run: make test

0 comments on commit c33ea2a

Please sign in to comment.