Skip to content

Fix spelling + indentation #289

Fix spelling + indentation

Fix spelling + indentation #289

Workflow file for this run

name: Go
on:
push:
tags:
- v*
branches: [ master ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Vet
run: go vet ./...
- name: Test
run: go test -v ./...