cicd: add github workflow ci

This commit is contained in:
Ray Suffern
2024-06-03 07:24:03 -04:00
parent 5cd7aec3ef
commit dcd3d9f715

21
.github/workflows/go.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.22
- name: Build
run: go build -v ./...