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 fd2b643
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,18 @@ jobs:
go test -timeout=60s -race
go build -race
- name: ARC: build and test
working-directory: ./arc
run: |
go test -timeout=60s -race
go build -race
- 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
run: curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b $GITHUB_WORKSPACE v1.53.3

- name: run golangci-lint
run: $GITHUB_WORKSPACE/golangci-lint run --out-format=github-actions
run: $GITHUB_WORKSPACE/golangci-lint run --out-format=github-actions ./... ./simplelru/...

- name: ARC: run golangci-lint
working-directory: ./arc
run: $GITHUB_WORKSPACE/golangci-lint run --out-format=github-actions ./...
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 fd2b643

Please sign in to comment.