forked from apache/beam
-
Notifications
You must be signed in to change notification settings - Fork 1
77 lines (72 loc) · 2.75 KB
/
go_tests.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
# To learn more about GitHub Actions in Apache Beam check the CI.md
name: Go tests
on:
schedule:
- cron: '10 2 * * *'
push:
branches: ['master', 'release-*']
tags: 'v*'
pull_request:
branches: ['master', 'release-*']
tags: 'v*'
paths: ['sdks/go/pkg/**', 'sdks/go.mod', 'sdks/go.sum']
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- uses: actions/setup-go@v3
with:
go-version: '1.18'
- name: Delete old coverage
run: "cd sdks/go/pkg && rm -rf .coverage || :"
- name: Run coverage
run: cd sdks/go/pkg && go test -coverprofile=coverage.txt -covermode=atomic ./...
- uses: codecov/codecov-action@v2
with:
flags: go
files: ./sdks/go/pkg/coverage.txt
name: go-unittests
- name: Run fmt
run: cd sdks/go/pkg/beam && go fmt ./...; git diff-index --quiet HEAD || (echo "Run go fmt before checking in changes" && exit 1)
- name: Run vet
run: |
cd sdks/go/pkg/beam
VOUT=$(go vet --copylocks=false --unsafeptr=false ./...)
if [ -n "$VOUT" ]; then
echo -e "Run go vet and fix warnings before checking in changes\n"
echo -e "Vet Warnings:\n"
echo -e "$VOUT" && exit 1
fi
- name: Run Staticcheck
run: |
go install "honnef.co/go/tools/cmd/[email protected]"
cd sdks/go/pkg/beam
RESULTS=$($(go env GOPATH)/bin/staticcheck ./...)
if [ -n "$RESULTS" ]; then
echo -e "Please address Staticcheck warnings before checking in changes\n"
echo -e "Staticcheck Warnings:\n"
echo -e "$RESULTS" && exit 1
fi