Skip to content

feat(#3): add support for floating point numbers #16

feat(#3): add support for floating point numbers

feat(#3): add support for floating point numbers #16

Workflow file for this run

name: test
on:
push:
branches:
- '*'
paths:
- '**.go'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.19.1'
- name: Run tests
run: go test -v -cover -timeout=30s ./...