From 0d1370975d8096047f226b8d51d94f4c285d2581 Mon Sep 17 00:00:00 2001 From: GogaCoder <38399008+kuzgoga@users.noreply.github.com> Date: Sun, 9 Mar 2025 15:47:52 +0700 Subject: [PATCH] Create build_go.yaml --- .github/workflows/build_go.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/build_go.yaml diff --git a/.github/workflows/build_go.yaml b/.github/workflows/build_go.yaml new file mode 100644 index 0000000..9773690 --- /dev/null +++ b/.github/workflows/build_go.yaml @@ -0,0 +1,22 @@ +name: Build + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +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.1' + + - name: Build + run: go build -v ./...