Create build_go.yaml

This commit is contained in:
GogaCoder
2025-03-09 15:47:52 +07:00
committed by GitHub
parent ad201e5503
commit 0d1370975d

22
.github/workflows/build_go.yaml vendored Normal file
View File

@@ -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 ./...