From f82dfdee09f712d0630366c966002bc8f94674b1 Mon Sep 17 00:00:00 2001 From: 0xEtherPunk <123338373+0xEtherPunk@users.noreply.github.com> Date: Thu, 21 Nov 2024 02:31:04 +0700 Subject: [PATCH] ci: 1.0.1 Create go.yml --- .github/workflows/go.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/go.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 0000000..55bd839 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,11 @@ +name: Go +on: [push, pull_request] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v4 + with: + go-version: '1.23.2' + - run: go test -v ./...