Skip to content

Bump modifyVolumeRequestHandlerTimeout to 1 minute #45

Bump modifyVolumeRequestHandlerTimeout to 1 minute

Bump modifyVolumeRequestHandlerTimeout to 1 minute #45

Workflow file for this run

name: Verify
on:
push:
jobs:
buildx:
runs-on: ubuntu-latest
steps:
- id: go-cache-paths
run: |
echo "::set-output name=go-build::$(go env GOCACHE)"
echo "::set-output name=go-mod::$(go env GOMODCACHE)"
- name: Checkout
uses: actions/checkout@v2
- name: Set up Go 1.19
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Go Build Cache
uses: actions/cache@v2
with:
path: ${{ steps.go-cache-paths.outputs.go-build }}
key: ${{ runner.os }}-cache-${{ hashFiles('**/go.sum') }}
# Runs ./hack/verify-all
- name: Run make verify
run: |
make verify