Skip to content

support scanning into all numeric types #19

support scanning into all numeric types

support scanning into all numeric types #19

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
linux:
name: go-linux
strategy:
matrix:
go: ["1.21", "1.22", "1.23", "1.24"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "${{ matrix.go }}"
- run: go test ./...
linux-32bit:
name: go-linux-32bit
strategy:
matrix:
go: ["1.21", "1.22", "1.23", "1.24"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "${{ matrix.go }}"
- run: go test ./...
darwin:
name: go-macos
strategy:
matrix:
go: ["1.21", "1.22", "1.23", "1.24"]
runs-on: macos-14
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "${{ matrix.go }}"
- run: go test ./...