Set up github actions

This commit is contained in:
nyanotech 2024-01-10 01:15:10 -08:00 committed by nyanotech
parent e1d43c818b
commit c2bc4cacc9
Signed by: nyanotech
GPG Key ID: D2D0A9E8F160472B

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

@ -0,0 +1,24 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "depot" ]
pull_request:
branches: [ "depot" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21.4'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...