Skip to content

fix(presubcommandrun): fix panic when parent-hook is not specified (#5) #19

fix(presubcommandrun): fix panic when parent-hook is not specified (#5)

fix(presubcommandrun): fix panic when parent-hook is not specified (#5) #19

Workflow file for this run

name: Validation
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: [ '1.21', '1.22' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Download dependencies
run: go mod download -x
- name: Test
run: go test ./...