Skip to content

Commit

Permalink
add test badge in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
raphi011 committed Nov 26, 2024
1 parent 8166342 commit 8e6103a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# 🤝 Handoff

![Go Tests](https://github.com/raphi011/handoff/actions/workflows/go-tests.yml/badge.svg)

Handoff is a library that allows you to bootstrap a server that runs scheduled and manually triggered e2e tests written in Go and is extensible through plugins.

## Why Handoff?
Expand Down Expand Up @@ -40,8 +42,8 @@ Bootstrapping a server is simple, all you need to do is run this code:
package main

func main() {
h := handoff.New()
h.Run()
h := handoff.New()
h.Run()
}
```

Expand All @@ -51,7 +53,7 @@ Another way is to register them via `handoff.Register` before calling `handoff.N

```go
func init() {
handoff.Register(ts, scheduledRuns)
handoff.Register(ts, scheduledRuns)
}
```

Expand Down

0 comments on commit 8e6103a

Please sign in to comment.