Skip to content

Commit

Permalink
Include expirable package in build workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
mgaffney committed Aug 8, 2023
1 parent 3b3d259 commit 8d433cc
Showing 1 changed file with 3 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,8 +22,8 @@ jobs:

- name: build and test
run: |
go test -timeout=60s -race
go build -race
go test -timeout=60s -race ./...
go build -race ./...
- name: build and test ARC
working-directory: ./arc
Expand All @@ -35,7 +35,7 @@ jobs:
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 ./... ./simplelru/...
run: $GITHUB_WORKSPACE/golangci-lint run --out-format=github-actions ./... ./simplelru/... ./expirable/...

- name: run golangci-lint on ARC
working-directory: ./arc
Expand Down

0 comments on commit 8d433cc

Please sign in to comment.