blob: 12970dab4e9e5ada224f787475dfefd6e94bac58 [file] [log] [blame]
# 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']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 2
- uses: actions/setup-go@v2
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/staticcheck@2022.1"
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