bazaar/.github/workflows/go.yml

25 lines
398 B
YAML

name: Go
on:
push:
branches: ["latest"]
pull_request:
branches: ["latest"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Build
run: go build -v ./...
- name: Test and coverage
run: go test -cover -v ./...