Skip to content

Add Value.All method to iterate over all values #74

Add Value.All method to iterate over all values

Add Value.All method to iterate over all values #74

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test-format:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.23.x
- name: Checkout code
uses: actions/checkout@v2
- name: Format
run: diff -u <(echo -n) <(gofmt -s -d .)
test-all:
strategy:
matrix:
go-version: [1.23.x]
os: [ubuntu-latest, macos-latest, windows-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 ./...