Skip to content

Support arrays in recordgen; make instances global #247

Support arrays in recordgen; make instances global

Support arrays in recordgen; make instances global #247

Workflow file for this run

name: CI
on:
push:
branches:
- master
- "*"
pull_request:
jobs:
test:
strategy:
matrix:
go-version: ["1.22.x"]
os: ["ubuntu-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Check style
run: |
gofmt -w -s .
go generate ./...
git diff --exit-code
- name: Go tests
run: |
go vet -composites=false ./...
go test -v ./...
- name: End-to-end CLI tests
run: |
./test/bats/bin/bats ./test/goose.bats