Skip to content

Change helper method names #9

Change helper method names

Change helper method names #9

Workflow file for this run

on: [push, pull_request]
name: test
jobs:
test:
strategy:
fail-fast: false
matrix:
go-version: [1.20.x]
# platform: [ubuntu-latest, macos-latest, windows-latest]
# windows fails for unknown reasons(tests do not fail on my local laptop
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Run tests
run: go test -v ./...