Skip to content

feat: add ko test command to build with go test -c #1766

feat: add ko test command to build with go test -c

feat: add ko test command to build with go test -c #1766

Workflow file for this run

name: Boilerplate
on:
pull_request:
branches: ['main']
jobs:
check:
name: Boilerplate Check
runs-on: ubuntu-latest
strategy:
fail-fast: false # Keep running if one leg fails.
matrix:
extension:
- go
- sh
# Map between extension and human-readable name.
include:
- extension: go
language: Go
- extension: sh
language: Bash
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: chainguard-dev/actions/boilerplate@e82b4e5ae10182af72972addcb3fedf7454621c8 # main
with:
extension: ${{ matrix.extension }}
language: ${{ matrix.language }}