Skip to content

Omit float unchecked number conversion tests #291

Omit float unchecked number conversion tests

Omit float unchecked number conversion tests #291

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- '**.md'
pull_request:
branches:
- main
paths-ignore:
- '**.md'
jobs:
test:
strategy:
fail-fast: false
matrix:
go: ['1.19', '1.20', '1.21']
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup Go ${{ matrix.go }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
cache: false
- run: make test
- name: Debug with tmate on failure
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3