diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1c9e1bd19..172119456 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -48,10 +48,10 @@ jobs: run: | "CGO_LDFLAGS=-L$env:TMP" >> $env:GITHUB_ENV "$env:TMP" >> $env:GITHUB_PATH - - name: Skip Avro plugin & test (windows) - if: matrix.os == 'windows-latest' - run: | - "SKIP_PLUGIN_AVRO=1" >> $env:GITHUB_ENV + # - name: Skip Avro plugin & test (windows) + # if: matrix.os == 'windows-latest' + # run: | + # "SKIP_PLUGIN_AVRO=1" >> $env:GITHUB_ENV - name: Test (unit) if: matrix.os != 'ubuntu-latest' run: make test diff --git a/Makefile b/Makefile index 0a6582e20..b9007661b 100755 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ PACT_CLI="docker run --rm -v ${PWD}:${PWD} -e PACT_BROKER_BASE_URL=$(DOCKER_HOST PLUGIN_PACT_PROTOBUF_VERSION=0.3.15 PLUGIN_PACT_CSV_VERSION=0.0.6 PLUGIN_PACT_MATT_VERSION=0.1.1 -PLUGIN_PACT_AVRO_VERSION=0.0.5 +PLUGIN_PACT_AVRO_VERSION=0.0.6 GO_VERSION?=1.22 ci:: docker deps clean bin test pact @@ -91,7 +91,7 @@ download_plugins: fi; \ if [ -z $$SKIP_PLUGIN_AVRO ]; then\ if [ ! -f ~/.pact/plugins/avro-$(PLUGIN_PACT_AVRO_VERSION)/bin/pact-avro-plugin ]; then \ - ~/.pact/bin/pact-plugin-cli -y install https://github.com/austek/pact-avro-plugin/releases/tag/v$(PLUGIN_PACT_AVRO_VERSION); \ + ~/.pact/bin/pact-plugin-cli -y install https://github.com/you54f/pact-avro-plugin/releases/tag/v$(PLUGIN_PACT_AVRO_VERSION); \ else \ echo "--- 🐿 Pact avro-$(PLUGIN_PACT_AVRO_VERSION) already installed"; \ fi; \ diff --git a/examples/avro/avro_consumer_test.go b/examples/avro/avro_consumer_test.go index 15613893e..8de5963d9 100644 --- a/examples/avro/avro_consumer_test.go +++ b/examples/avro/avro_consumer_test.go @@ -47,7 +47,7 @@ func TestAvroHTTP(t *testing.T) { UponReceiving("A request to do get some Avro stuff"). UsingPlugin(consumer.PluginConfig{ Plugin: "avro", - Version: "0.0.5", + Version: "0.0.6", }). WithRequest("GET", "/avro"). WillRespondWith(200, func(res *consumer.V4InteractionWithPluginResponseBuilder) {