Skip to content

Commit

Permalink
Merge branch 'master' into openshift_4_16
Browse files Browse the repository at this point in the history
  • Loading branch information
fbm3307 authored Jan 21, 2025
2 parents b0115c5 + af12adf commit 8b4c8ed
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/verify-dependencies.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: verify-dependencies
on:
pull_request:
branches:
- master

jobs:
verify-dependencies:
name: Verify Dependencies
runs-on: ubuntu-20.04

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod

- name: Install golangci-lint
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.63.1
- name: Verify
run: |
make verify-replace-run

0 comments on commit 8b4c8ed

Please sign in to comment.