Skip to content
This repository has been archived by the owner on Oct 21, 2023. It is now read-only.

fix: params

fix: params #5

Workflow file for this run

name: Unit testing
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Unit tests
run: go test -v ./...