forked from orijtech/groupcache
-
Notifications
You must be signed in to change notification settings - Fork 12
60 lines (52 loc) · 1.67 KB
/
go.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Go
on: [push, workflow_dispatch, pull_request_target]
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macOS-latest, ubuntu-latest]
goversion: [1.17, 1.18, '1.19', '1.20']
steps:
- name: Set up Go ${{matrix.goversion}} on ${{matrix.os}}
uses: actions/setup-go@v3
with:
go-version: ${{matrix.goversion}}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: gofmt
if: ${{matrix.goversion == '1.20'}}
run: |
[[ -z $(gofmt -l $(find . -name '*.go') ) ]]
- name: Get dependencies
env:
GO111MODULE: on
run: go mod download
- name: Vet
env:
GO111MODULE: on
run: go vet -mod=readonly ./...
- name: Test
env:
GO111MODULE: on
run: go test -mod=readonly -count 2 ./...
- name: Race Test
env:
GO111MODULE: on
run: go test -race -mod=readonly -count 2 ./...
# Run all consistenthash Fuzz tests for 30s with go 1.20
- name: Fuzz Consistent-Hash
if: ${{matrix.goversion == '1.20'}}
env:
GO111MODULE: on
run: go test -fuzz=. -fuzztime=30s ./consistenthash
# Run all the tests with the paranoid linked-list checks enabled
- name: Race Test Paranoid LinkedList
env:
GO111MODULE: on
run: |
sed -e 's/const paranoidLL = false/const paranoidLL = true/' < lru/typed_ll.go > lru/typed_ll.go.new
mv lru/typed_ll.go.new lru/typed_ll.go
go test -race -mod=readonly -count 2 ./...