From 38aa81bf4974ddea8c10e99d0e145f7fae3866a0 Mon Sep 17 00:00:00 2001 From: drew Date: Mon, 28 Jul 2025 18:59:08 +0400 Subject: [PATCH] feat: add CI --- .github/worklflows/ci.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/worklflows/ci.yml diff --git a/.github/worklflows/ci.yml b/.github/worklflows/ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..78d333e87992c2b59e051607970a2f23ac919b33 --- /dev/null +++ b/.github/worklflows/ci.yml @@ -0,0 +1,24 @@ +name: Go CI + +on: + push: + branches: [master] + pull_request: + branches: [master] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - 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 ./...