-
Notifications
You must be signed in to change notification settings - Fork 60
51 lines (43 loc) · 1.1 KB
/
test-all.yaml
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
name: "Test Go Client"
on: ["push", "pull_request"]
jobs:
test:
runs-on: "ubuntu-latest"
env:
GOPATH: "${{ github.workspace }}"
HZ_VERSION: "5.1"
defaults:
run:
shell: "bash"
working-directory: "$HOME/hazelcast-go-client"
steps:
- name: "Checkout Code"
uses: "actions/checkout@v2"
with:
path: "$HOME/hazelcast-go-client"
- name: "Setup JRE"
uses: "actions/setup-java@v4"
with:
distribution: "zulu"
java-version: "17"
- name: "Start Hazelcast Remote Controller"
run: |
bash ./rc.sh start
sleep 2
- name: "Setup Go"
uses: "actions/setup-go@v2"
with:
go-version: "1.17"
- name: "Install Go tools"
run: |
go install golang.org/x/tools/[email protected]
go install honnef.co/go/tools/cmd/[email protected]
- name: "Go mod tidy"
run: |
go mod tidy
- name: "Run Checkers"
run: |
make check
- name: "Run All Tests"
run: |
make test-all