Skip to content

Commit

Permalink
KUBESAW-173: Create GH Actions workflow running verify-replace-run ta…
Browse files Browse the repository at this point in the history
…rget

Signed-off-by: Feny Mehta <fbm3307@gmail.com>
  • Loading branch information
fbm3307 committed Dec 30, 2024
1 parent 5453178 commit 9309e0c
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/verify-dependencies.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: verify-dependencies
on:
push:
branches:
- master
tags-ignore:
- '*.*'
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: go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.52.2

- name: Verify
run: |
make verify-replace-run

0 comments on commit 9309e0c

Please sign in to comment.