CI: build with Go

This commit is contained in:
raf 2023-12-19 00:40:33 +03:00 committed by GitHub
parent dfe1f3a78c
commit 14a55bd77d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

17
.github/workflows/go.yml vendored Normal file
View file

@ -0,0 +1,17 @@
name: Go build CI
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Build
run: go build -v ./.