Skip to content

Update module github.com/urfave/cli/v2 to v2.27.7 #3326

Update module github.com/urfave/cli/v2 to v2.27.7

Update module github.com/urfave/cli/v2 to v2.27.7 #3326

Workflow file for this run

name: Test
on:
pull_request:
branches:
- master
paths-ignore:
- charts/**
- docs/**
push:
branches:
- master
paths-ignore:
- charts/**
- docs/**
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Determine Go version from go.mod
run: echo "GO_VERSION=$(go mod edit -json | jq -r .Go)" >> $GITHUB_ENV
- uses: actions/setup-go@v6
with:
go-version: ${{ env.GO_VERSION }}
- name: Run tests
run: make test
- name: Run integration tests
run: make integration-test