Skip to content

Match workflow file default to name used in scaffold (#48) #166

Match workflow file default to name used in scaffold (#48)

Match workflow file default to name used in scaffold (#48) #166

Workflow file for this run

name: Run Go tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...