Skip to content

Widen int64 cache and compare integers without float conversion #26

Widen int64 cache and compare integers without float conversion

Widen int64 cache and compare integers without float conversion #26

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
go: ['1.23', '1.24', '1.25', '1.26']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- run: go test -v -coverprofile=coverage.txt -covermode=atomic ./...
shell: bash
- uses: codecov/codecov-action@v4
if: matrix.os == 'ubuntu-latest' && matrix.go == '1.26'
with:
files: coverage.txt
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}