Skip to content

Add initial state file to packages #30

Add initial state file to packages

Add initial state file to packages #30

Workflow file for this run

name: "test hareply"
on:
pull_request:
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.21.x
steps:
- name: checkout
uses: actions/checkout@v4
- name: install
uses: actions/setup-go@v5
with:
go-version: '${{ matrix.go-version }}'
- name: vet
run: go vet ./...
- name: test
run: go test -v -race ./...