From c19cc72dabd34c69173f21ec53a03da192531f7c Mon Sep 17 00:00:00 2001 From: Charis Date: Wed, 24 Jun 2026 16:22:24 +0300 Subject: [PATCH 1/2] Run duneapi-client-go tests in CI --- .github/workflows/ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..49212ae --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,18 @@ +name: CI + +on: + push: + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-go@v5 + with: + go-version-file: go.mod + + - name: Run unit tests + run: go test -short -timeout=30s -race -cover ./... From 1d0412b35c41870ffd838610de716ddb40ab9eb0 Mon Sep 17 00:00:00 2001 From: Charis Date: Wed, 24 Jun 2026 16:26:34 +0300 Subject: [PATCH 2/2] PR feedback --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 49212ae..458281f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,7 +1,6 @@ name: CI on: - push: pull_request: jobs: