Skip to content

Commit

Permalink
Merge pull request #11 from ThreeDotsLabs/github-actions
Browse files Browse the repository at this point in the history
Add GitHub Actions
  • Loading branch information
m110 authored Nov 15, 2022
2 parents baf6c4b + 7abff72 commit 199ac36
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 285 deletions.
91 changes: 0 additions & 91 deletions .circleci/config.yml

This file was deleted.

10 changes: 0 additions & 10 deletions .circleci/docker-compose.override.yml

This file was deleted.

178 changes: 0 additions & 178 deletions .circleci/wait-for-it.sh

This file was deleted.

4 changes: 0 additions & 4 deletions .circleci/wait-for-services.sh

This file was deleted.

10 changes: 10 additions & 0 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: master
on:
push:
branches:
- master
jobs:
ci:
uses: ThreeDotsLabs/watermill/.github/workflows/tests.yml@master
with:
stress-tests: true
8 changes: 8 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: pr
on:
push:
branches-ignore:
- master
jobs:
ci:
uses: ThreeDotsLabs/watermill/.github/workflows/tests.yml@master
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
up:
docker-compose up


test:
go test -parallel 20 ./...
Expand All @@ -19,6 +19,12 @@ test_stress:
test_reconnect:
go test -tags=reconnect ./...

wait:


build:
go build ./...

fmt:
go fmt ./...
goimports -l -w .
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Watermill HTTP Pub/Sub
<img align="right" width="200" src="https://threedots.tech/watermill-io/watermill-logo.png">

[![CircleCI](https://circleci.com/gh/ThreeDotsLabs/watermill-http/tree/master.svg?style=svg)](https://circleci.com/gh/ThreeDotsLabs/watermill-http/tree/master)
[![CI Status](https://github.com/ThreeDotsLabs/watermill-http/actions/workflows/master.yml/badge.svg)](https://github.com/ThreeDotsLabs/watermill-http/actions/workflows/master.yml)
[![Go Report Card](https://goreportcard.com/badge/github.com/ThreeDotsLabs/watermill-http)](https://goreportcard.com/report/github.com/ThreeDotsLabs/watermill-http)

This is Pub/Sub for the [Watermill](https://watermill.io/) project.
Expand Down

0 comments on commit 199ac36

Please sign in to comment.