Skip to content

handler: add an option to disallow array-based parameters #753

handler: add an option to disallow array-based parameters

handler: add an option to disallow array-based parameters #753

Workflow file for this run

name: Go presubmit
on:
push:
branches:
- main
pull_request:
types: [opened, reopened, synchronize]
workflow_dispatch:
permissions:
contents: read
jobs:
build:
name: Go presubmit
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version: ['stable']
os: ['ubuntu-latest']
steps:
- uses: actions/checkout@v4
- name: Install Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: true
- uses: creachadair/go-presubmit-action@v2