From eb125e17e12f10bd08b2e4f3bf156a2b0991a175 Mon Sep 17 00:00:00 2001 From: Wil Simpson <1787320+WilSimpson@users.noreply.github.com> Date: Thu, 5 Dec 2024 22:29:20 -0500 Subject: [PATCH 1/5] bug: added kafka to dns entry --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f472db3..5dde8cc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,6 +31,7 @@ jobs: - name: Test run: | + sudo echo "127.0.0.1 kafka" | sudo tee -a /etc/hosts make install-tools echo "${HOME}/go/bin" >> $GITHUB_PATH make test From 87672d0e4a918360660b157271893403431a349c Mon Sep 17 00:00:00 2001 From: Wil Simpson <1787320+WilSimpson@users.noreply.github.com> Date: Thu, 5 Dec 2024 22:36:54 -0500 Subject: [PATCH 2/5] fix: update setup-go from v4 to v5 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5dde8cc..e0c0a9b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version: 1.23 From 63edb675428ccadd65651fbe5d1cf40e4611b5de Mon Sep 17 00:00:00 2001 From: Wil Simpson <1787320+WilSimpson@users.noreply.github.com> Date: Thu, 5 Dec 2024 22:41:37 -0500 Subject: [PATCH 3/5] feat: added CI test status --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 16a720e..4fbdb0b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Overview [![codecov](https://codecov.io/gh/ShatteredRealms/go-common-service/graph/badge.svg?token=8nwCfHwBSh)](https://codecov.io/gh/ShatteredRealms/go-common-service) +# Overview [![codecov](https://codecov.io/gh/ShatteredRealms/go-common-service/graph/badge.svg?token=8nwCfHwBSh)](https://codecov.io/gh/ShatteredRealms/go-common-service) [![Tests](https://github.com/ShatteredRealms/go-common-service/actions/workflows/test.yml/badge.svg)](https://github.com/ShatteredRealms/go-common-service/actions/workflows/test.yml) Common utilities and packages for Shattered Realms golang microservices. ## Packages From 1b927a5d95944fe713e96398f52e17c9da163768 Mon Sep 17 00:00:00 2001 From: Wil Simpson <1787320+WilSimpson@users.noreply.github.com> Date: Thu, 5 Dec 2024 22:43:10 -0500 Subject: [PATCH 4/5] style: updated test name --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e0c0a9b..7a3ca64 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,4 +1,4 @@ -name: Run Tests +name: Unit and Integration Tests on: push: From afa2c082d3d79fb301b33da0bd8990d80f4561e6 Mon Sep 17 00:00:00 2001 From: Wil Simpson <1787320+WilSimpson@users.noreply.github.com> Date: Thu, 5 Dec 2024 22:44:16 -0500 Subject: [PATCH 5/5] refac: used new CI test name in badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4fbdb0b..b05dc1b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Overview [![codecov](https://codecov.io/gh/ShatteredRealms/go-common-service/graph/badge.svg?token=8nwCfHwBSh)](https://codecov.io/gh/ShatteredRealms/go-common-service) [![Tests](https://github.com/ShatteredRealms/go-common-service/actions/workflows/test.yml/badge.svg)](https://github.com/ShatteredRealms/go-common-service/actions/workflows/test.yml) +# Overview [![codecov](https://codecov.io/gh/ShatteredRealms/go-common-service/graph/badge.svg?token=8nwCfHwBSh)](https://codecov.io/gh/ShatteredRealms/go-common-service) [![Unit and Integration Tests](https://github.com/ShatteredRealms/go-common-service/actions/workflows/test.yml/badge.svg)](https://github.com/ShatteredRealms/go-common-service/actions/workflows/test.yml) Common utilities and packages for Shattered Realms golang microservices. ## Packages