CI: build go

This commit is contained in:
raf 2023-10-26 16:13:18 +03:00 committed by GitHub
parent 4eecdcc53e
commit fc633d3659
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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

@ -0,0 +1,27 @@
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Build
run: go build -v ./.
- name: Cache
uses: actions/cache@v3.3.2