Skip to content

Commit

Permalink
Infrastructure update
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-Morozko committed Dec 26, 2023
1 parent 9ea514a commit ba8dbbf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: test
strategy:
matrix:
go-version: ['1.20.x', '1.21.x']
go-version: ['1.21.x']
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Build fabric-plugins
run: go build -v ./cmd/plugins
- name: Test
run: go test -v ./...
run: go test -race -v -timeout 10s ./...

golangci:
name: lint
Expand Down
5 changes: 4 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,7 @@ lint:
golangci-lint run

lint-extra:
gofumpt -w -extra .
gofumpt -w -extra .

test:
go test -timeout 10s -race -v ./...

0 comments on commit ba8dbbf

Please sign in to comment.