Skip to content

test: add unit and integration coverage suites #1

test: add unit and integration coverage suites

test: add unit and integration coverage suites #1

Workflow file for this run

name: Go
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build-test:
runs-on: ubuntu-latest
steps:

Check failure on line 12 in .github/workflows/go.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/go.yml

Invalid workflow file

You have an error in your yaml syntax on line 12
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.25"
- name: Build
run: go build ./...
- name: Test
run: go test ./...
- name: Race
run: go test -race ./...