Skip to content

Commit

Permalink
added integration.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
prayagsingh authored Apr 25, 2021
1 parent 56df92f commit 4afef89
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Integration

on:
push:
paths:
- "*"
- "!README.md"
pull_request:

jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup go
uses: actions/[email protected]
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
- name: Setup go
uses: actions/[email protected]
with:
go-version: '1.16.x'
- name: Build
run: make build

docker:
name: Docker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Docker
run: make docker

0 comments on commit 4afef89

Please sign in to comment.