added gitea action
Some checks failed
Go / build (1.19) (push) Failing after 3m29s

This commit is contained in:
Colin Henry 2024-04-26 23:20:51 -07:00
parent 4665f2ccf9
commit 8b77b5acc8

View File

@ -0,0 +1,18 @@
name: Go
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.19' ]
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build -v ./...
- name: Test
run: go test