Skip to content

fix: overflows int on 32-bit platform #8

fix: overflows int on 32-bit platform

fix: overflows int on 32-bit platform #8

Workflow file for this run

name: A
on:
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6.1.1
build-and-test:
strategy:
matrix:
goarch: [amd64, 386, arm64, arm]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Build
run: go build ./...
env:
GOARCH: ${{ matrix.goarch }}
- name: Run Tests
run: go test ./...
env:
GOARCH: ${{ matrix.goarch }}