From b155845b30806bfa599ca1493c09ba400b4dec72 Mon Sep 17 00:00:00 2001 From: Christopher Wunder Date: Sun, 13 Jul 2025 22:34:03 +0200 Subject: [PATCH 1/2] Rename main package --- pkg/{server => statix}/server.go | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename pkg/{server => statix}/server.go (100%) diff --git a/pkg/server/server.go b/pkg/statix/server.go similarity index 100% rename from pkg/server/server.go rename to pkg/statix/server.go From 14488f020930c409fcb2263acd999bbca74a35bf Mon Sep 17 00:00:00 2001 From: Christopher Wunder Date: Mon, 14 Jul 2025 00:15:12 +0200 Subject: [PATCH 2/2] Add CI workflow --- .github/workflows/ci.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..6e4bd87 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,26 @@ +# This workflow will build a golang project +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go + +name: Go + +on: + pull_request: + branches: [ "main" ] + +jobs: + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.24' + + - name: Build + run: go build -v ./... + + - name: Test + run: go test -v ./... \ No newline at end of file