a82ec7ad6f
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 2.3.4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v2.3.4) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
40 lines
747 B
YAML
40 lines
747 B
YAML
name: Integration
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
name: Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.3.4
|
|
- name: Setup go
|
|
uses: actions/setup-go@v2.1.3
|
|
with:
|
|
go-version: '1.16.x'
|
|
- name: Vet
|
|
run: make vet
|
|
- name: Test
|
|
run: make coverage
|
|
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.3.4
|
|
- name: Setup go
|
|
uses: actions/setup-go@v2.1.3
|
|
with:
|
|
go-version: '1.16.x'
|
|
- name: Build
|
|
run: make build
|
|
|
|
docker:
|
|
name: Docker
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.3.4
|
|
- name: Docker
|
|
run: make docker
|