Files
x/.gitea/workflows/build.yaml
Colin Henry 8b77b5acc8
Some checks failed
Go / build (1.19) (push) Failing after 3m29s
added gitea action
2024-04-26 23:20:51 -07:00

18 lines
400 B
YAML

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