hivedscheduler/.github/workflows/build.yaml

47 строки
1.2 KiB
YAML

name: build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Build and Test
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@v2
- run: build/hivedscheduler/docker-build.sh test
codecov:
name: Code Coverage
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: [1.12.6]
os: [ubuntu-16.04]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
path: src/github.com/${{ github.repository }}
- name: Setup go ${{ matrix.go }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Setup GOPATH
run: echo "GOPATH=${{ github.workspace }}" >> $GITHUB_ENV
- name: Go test
working-directory: src/github.com/${{ github.repository }}
run: go test -race -covermode=atomic -coverprofile=$GOPATH/coverage.txt ./...
- name: Report coverage
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ${{ github.workspace }}/coverage.txt
flags: unittests
name: codecov-go${{ matrix.go }}-${{ matrix.os }}