-
Notifications
You must be signed in to change notification settings - Fork 5
60 lines (50 loc) · 1.39 KB
/
build_and_test.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: CICD
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
golangLint:
name: Lint Scan
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
cache: true
- name: golangci-lint
run: |
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
golangci-lint --version
- name: Run Golangci Lint
id: lint
run: |
golangci-lint run --timeout 5m --issues-exit-code 0 --out-format=tab > lint_results_table.md
if [ -s lint_results_table.md ]; then
echo "Issues found"
echo "lint_flag=true" >> "$GITHUB_OUTPUT"
else
echo "No issues found"
fi
build:
name: build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Build
run: go build -v ./...
- name: Run Third Party Unit Tests
run: |
go mod tidy
go test -v ./{/third_party/datastax/proxycore,/third_party/datastax/proxy}
- name: Run Unit Tests
run: |
go mod tidy
go test -v ./{/otel,/spanner,/tableConfig,/tableConfig,/translator,/utilities}