Skip to content

Commit

Permalink
Add GitHub Actions workflow for build/test plus README badges
Browse files Browse the repository at this point in the history
  • Loading branch information
lucperkins committed Jul 28, 2019
1 parent 32aa703 commit 7dfa908
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/main.workflow
@@ -0,0 +1,15 @@
workflow "build and test" {
on = "push"
resolves = ["test"]
}

action "build" {
uses = "actions-contrib/go@master"
args = ["build", "-v", "./..."]
}

action "test"{
uses = "actions-contrib/go@master"
args = ["test", "-v", "./..."]
needs = "build"
}
2 changes: 2 additions & 0 deletions README.md
@@ -1,5 +1,7 @@
# Strato

[![Actions Status](https://wdp9fww0r9.execute-api.us-west-2.amazonaws.com/production/badge/lucperkins/strato)](https://github.com/lucperkins/strato/actions) [![GoDoc](https://godoc.org/github.com/lucperkins/strato?status.svg)](https://godoc.org/github.com/lucperkins/strato)

An all-in-one data service with support for:

* Key/value operations
Expand Down

0 comments on commit 7dfa908

Please sign in to comment.