Skip to content

main_test.go: Use stable test data, fix “military time” test (help #56) #60

main_test.go: Use stable test data, fix “military time” test (help #56)

main_test.go: Use stable test data, fix “military time” test (help #56) #60

Workflow file for this run

name: Go test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
env:
GO111MODULE: auto
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.22", "1.23"]
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build
- name: Test
run: go test -v .