Skip to content

Commit

Permalink
Trying to fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
deniszh committed Jul 24, 2023
1 parent 5277479 commit 3d86dd9
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.20.x]
go-version: [1.19.x,1.20.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -17,7 +17,5 @@ jobs:
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.52.2
version: v1.53.3
args: -E gofmt -E gochecknoglobals -E unparam -E misspell --exclude-use-default=false --timeout 5m0s ./...
- name: test
run: make test
16 changes: 16 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
on: [push, pull_request]
name: CI
jobs:
test:
strategy:
matrix:
go-version: [1.19.x,1.20.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: test
run: make test

0 comments on commit 3d86dd9

Please sign in to comment.