blob: f3eaf2b450074d38b0381bc2cb972ae911a05a3b [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.
name: Continuous Integration
on:
pull_request:
push:
branches:
- main
jobs:
check:
name: Check
runs-on: ubuntu-20.04
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: install goimports
run: GO111MODULE=off go get golang.org/x/tools/cmd/goimports
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Check License Header
uses: apache/skywalking-eyes@5c90c9698806040f50671a172a7cac17974ecebd
- name: Update dependencies
run: GOPROXY=https://proxy.golang.org go mod download
- name: Generate codes
run: make generate
- name: Lint
run: make lint
- name: Check
run: make check
build:
name: Build
runs-on: ubuntu-20.04
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Update dependencies
run: GOPROXY=https://proxy.golang.org go mod download
- name: Build
run: make build
- name: Build release
run: make release
test:
name: Test
runs-on: ubuntu-20.04
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Update dependencies
run: GOPROXY=https://proxy.golang.org go mod download
- name: Test
run: make test
checks:
name: build
runs-on: ubuntu-20.04
needs: [check, build, test]
steps:
- run: echo 'success'