Skip to content

Bump github.com/pivotal/kpack from 0.11.0 to 0.11.2 #11

Bump github.com/pivotal/kpack from 0.11.0 to 0.11.2

Bump github.com/pivotal/kpack from 0.11.0 to 0.11.2 #11

Workflow file for this run

name: unit test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
- name: Check docs up to date
run: |
set -euo pipefail
go run cmd/docs/main.go
if [[ `git status --porcelain` ]]; then
echo "Docs are not up-to-date"
exit 1
fi
- name: Test
run: go test -v ./pkg/...