Skip to content

Explicitly validate the len of params to ensure we don't get index ou… #19

Explicitly validate the len of params to ensure we don't get index ou…

Explicitly validate the len of params to ensure we don't get index ou… #19

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.18', '1.19', '1.20' ]
steps:
- uses: actions/checkout@v3
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Display Go version
run: go version
- name: Install Ginkgo
run: go install github.com/onsi/ginkgo/v2/ginkgo@latest
- name: Run tests
run: ./scripts/run_tests.sh