https://github.com/burkaydurdu/gop-pact
Pact Test
https://github.com/burkaydurdu/gop-pact
docker docker-compose go pact pact-broker
Last synced: about 1 month ago
JSON representation
Pact Test
- Host: GitHub
- URL: https://github.com/burkaydurdu/gop-pact
- Owner: burkaydurdu
- Created: 2022-01-24T20:13:40.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-25T12:08:23.000Z (over 4 years ago)
- Last Synced: 2025-03-30T11:34:05.192Z (about 1 year ago)
- Topics: docker, docker-compose, go, pact, pact-broker
- Language: Go
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pact Notes
---
#### For Consumer
```shell
go test -v ./... -tags=consumer
```
#### For Provider
```shell
go test -v ./... -tags=provider
```
#### Run Broker
```shell
docker-compose build .
docker-compose up
```
### can-i-deploy
Before you deploy a new version of an application to a production environment,
you need to know whether or not the version you're about to deploy is compatible
with the versions of the other apps that already exist in that environment.
```shell
pact-broker can-i-deploy --pacticipant=GopClient --broker-base-url=http://localhost --version=2.5.2 --to=dev
```
---
🎉 Thank you! [Abdulsametileri](https://github.com/Abdulsametileri)