Skip to content

Commit

Permalink
Add ARC module to the CI workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
mgaffney committed Aug 1, 2023
1 parent f4cd393 commit 9589d43
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:

- name: build and test
run: |
go test -timeout=60s -race
go build -race
go test -timeout=60s -race ./... ./arc
go build -race ./... ./arc
- name: install golangci-lint
run: curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b $GITHUB_WORKSPACE v1.50.1

- name: run golangci-lint
run: $GITHUB_WORKSPACE/golangci-lint run --out-format=github-actions
run: $GITHUB_WORKSPACE/golangci-lint run --out-format=github-actions ./... ./arc/... ./simplelru/...
1 change: 1 addition & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ issues:
linters:
- dupl
exclude-use-default: false
new: true

0 comments on commit 9589d43

Please sign in to comment.