Skip to content

lib: add evaluation state dump utility type #216

lib: add evaluation state dump utility type

lib: add evaluation state dump utility type #216

Workflow file for this run

name: Test
on:
push:
branches: [ dev ]
pull_request:
branches: [ dev ]
jobs:
test:
strategy:
matrix:
go-version: [1.19.x, 1.20.x, 1.21.x, 1.22.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test ./...
- name: Test Race
run: go test -race ./...