3205dd05d6
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.4 to 2.3.5. - [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.3.4...v2.3.5) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
42 lines
678 B
YAML
42 lines
678 B
YAML
name: Integration
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
name: Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.3.5
|
|
|
|
- name: Setup go
|
|
uses: actions/setup-go@v2.1.4
|
|
with:
|
|
go-version: '1.16.x'
|
|
|
|
- name: Vet
|
|
run: go vet
|
|
|
|
- name: Test
|
|
run: go test ./...
|
|
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
needs:
|
|
- test
|
|
steps:
|
|
- uses: actions/checkout@v2.3.5
|
|
|
|
- name: Setup go
|
|
uses: actions/setup-go@v2.1.4
|
|
with:
|
|
go-version: '1.16.x'
|
|
|
|
- name: Build
|
|
run: go build ./...
|
|
|
|
- name: Docker
|
|
run: docker build .
|