Skip to content

OCPBUGS-4556: src: Fix terminal resize event processing #56

OCPBUGS-4556: src: Fix terminal resize event processing

OCPBUGS-4556: src: Fix terminal resize event processing #56

Workflow file for this run

name: validate
on:
push:
tags:
- v*
branches:
- main
- release-*
pull_request:
env:
GO_VERSION: 1.24
permissions:
contents: read
jobs:
deps:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install go
uses: actions/setup-go@v5
with:
go-version: "${{ env.GO_VERSION }}"
- name: Verify Go dependencies
run: |
make vendor
git diff --exit-code
all-done:
needs:
- deps
runs-on: ubuntu-latest
steps:
- run: echo "All jobs completed"