Initial commit

This commit is contained in:
2023-10-25 18:26:53 +13:00
parent 58ff0c66fa
commit 0dcdb0cdf2
5 changed files with 182 additions and 0 deletions

29
.gittea/workflows/go.yml Normal file
View File

@@ -0,0 +1,29 @@
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.21' ]
name: Go ${{ matrix.go }} test
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v ./...
# - name: Test
# run: go test -v ./...