Skip to content

feature: Improved support for more data types #6

feature: Improved support for more data types

feature: Improved support for more data types #6

Workflow file for this run

name: Test
defaults:
run:
shell: bash
on:
push:
branches:
- '**'
jobs:
build:
name: 🧪 Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21.4
- name: Set up gotestfmt
run: go install github.com/gotesttools/gotestfmt/v2/cmd/gotestfmt@latest
# Run tests with nice formatting. Save the original log in /tmp/gotest.log
- name: 🧪 Execute Tests
run: |
set -euo pipefail
go test -json -v ./... 2>&1 | tee /tmp/gotest.log | gotestfmt