Skip to content

Commit

Permalink
[#3] .Add added github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasObenaus committed Feb 5, 2020
1 parent e0e6b62 commit e96ad94
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Go
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v1

- name: Run the unit tests and lint the code
run: make test lint

- name: Start the local gremlin as preparation for the integration test
run: make infra.up

- name: Run the integration tests
run: make test.integration

- name: Stop the local gremlin
run: make infra.down

0 comments on commit e96ad94

Please sign in to comment.