Skip to content

Refactor file header to use a struct representation #74

Refactor file header to use a struct representation

Refactor file header to use a struct representation #74

Workflow file for this run

name: Go
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.23.0
- name: Examine
run: go vet ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...