Update README.md (#284) #703
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow to help you get started with Actions | |
name: CI | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events for all branches and tags | |
on: | |
push: | |
branches: [ '**' ] | |
pull_request: | |
branches: [ '**' ] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
lint: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v1 | |
with: | |
persist-credentials: false | |
submodules: true | |
- name: Check License Header | |
uses: apache/skywalking-eyes/header@main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: golangci-lint | |
uses: ./.github/actions/review-dog | |
with: | |
golangci_lint_flags: "--timeout=10m" | |
test: | |
strategy: | |
matrix: | |
go-version: [ 1.18.x ] | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Go Build | |
run: | | |
go build ./... | |
- name: Unit Tests | |
run: | | |
mkdir -p build | |
go test -gcflags=all=-l $(go list ./... | grep -v /test/ | grep -v /parser | grep -v /types) -coverprofile=coverage.txt -covermode=atomic | |
- name: Post Coverage | |
run: bash <(curl -s https://codecov.io/bash) | |
- name: Shutdown Ubuntu MySQL (SUDOx) | |
run: sudo service mysql stop | |
- name: Integration Tests | |
shell: bash | |
run: make integration-test |