We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b3d259 commit 8d433ccCopy full SHA for 8d433cc
.github/workflows/ci.yml
@@ -22,8 +22,8 @@ jobs:
22
23
- name: build and test
24
run: |
25
- go test -timeout=60s -race
26
- go build -race
+ go test -timeout=60s -race ./...
+ go build -race ./...
27
28
- name: build and test ARC
29
working-directory: ./arc
@@ -35,7 +35,7 @@ jobs:
35
run: curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b $GITHUB_WORKSPACE v1.53.3
36
37
- name: run golangci-lint
38
- run: $GITHUB_WORKSPACE/golangci-lint run --out-format=github-actions ./... ./simplelru/...
+ run: $GITHUB_WORKSPACE/golangci-lint run --out-format=github-actions ./... ./simplelru/... ./expirable/...
39
40
- name: run golangci-lint on ARC
41
0 commit comments