Skip to content

ci: restore verbose output #42

ci: restore verbose output

ci: restore verbose output #42

Workflow file for this run

name: Build and test
on:
push:
pull_request:
jobs:
build-and-test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Checkout source
uses: actions/checkout@v3
- name: Build
run: make GOFLAGS="-v" build
- name: Test
run: make GOFLAGS="-v" test