Skip to content

gomod: bump github.com/jedib0t/go-pretty/v6 from 6.5.4 to 6.5.9 #627

gomod: bump github.com/jedib0t/go-pretty/v6 from 6.5.4 to 6.5.9

gomod: bump github.com/jedib0t/go-pretty/v6 from 6.5.4 to 6.5.9 #627

name: kubectl-pdborked
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
go-version: [1.19.x]
runs-on: ubuntu-latest
name: Build
env:
GOPATH: /home/runner/go
steps:
- name: Set up Go
uses: actions/[email protected]
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/[email protected]
- name: Get dependencies
run: |
PATH=$(go env GOPATH)/bin:$PATH
make install
- name: Spellcheck
run: |
make spell-check
- name: Lint
run: |
make lint
- name: Vet
run: |
make vet
- name: Security
run: |
make security
- name: Build
run: |
make build
- name: Test
run: |
make test