Skip to content

fix tests

fix tests #24

Workflow file for this run

name: Go Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.23"
- name: Install dependencies
run: go mod download
- name: Install impl
run: go install github.com/josharian/impl@latest
- name: Run tests
env:
SHELL: bash
run: go test -v ./...