From 08df44be71354132028cb3563a1f8153f0baf34a Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 7 Feb 2026 09:01:55 +0500 Subject: [PATCH 1/3] test squash1 From cfe05e38d50b1441e8d1b61aefc3950ea7606f8c Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 7 Feb 2026 09:01:57 +0500 Subject: [PATCH 2/3] test squash2 From 29d65c129195fea23c37eb5d1547ac9c448d579a Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 7 Feb 2026 12:54:26 +0500 Subject: [PATCH 3/3] add build action --- .github/workflows/go.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/go.yaml diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml new file mode 100644 index 0000000..fafb520 --- /dev/null +++ b/.github/workflows/go.yaml @@ -0,0 +1,19 @@ +name: compile-or-die + +on: + pull_request: + branches: [ main ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-go@v5 + with: + go-version: '1.22' + + - run: go mod download + - run: go build ./... \ No newline at end of file