Skip to content

Commit 8d433cc

Browse files
committed
Include expirable package in build workflows
1 parent 3b3d259 commit 8d433cc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222

2323
- name: build and test
2424
run: |
25-
go test -timeout=60s -race
26-
go build -race
25+
go test -timeout=60s -race ./...
26+
go build -race ./...
2727
2828
- name: build and test ARC
2929
working-directory: ./arc
@@ -35,7 +35,7 @@ jobs:
3535
run: curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b $GITHUB_WORKSPACE v1.53.3
3636

3737
- name: run golangci-lint
38-
run: $GITHUB_WORKSPACE/golangci-lint run --out-format=github-actions ./... ./simplelru/...
38+
run: $GITHUB_WORKSPACE/golangci-lint run --out-format=github-actions ./... ./simplelru/... ./expirable/...
3939

4040
- name: run golangci-lint on ARC
4141
working-directory: ./arc

0 commit comments

Comments
 (0)