Skip to content

npm: bump markdownlint-cli from 0.39.0 to 0.41.0 #632

npm: bump markdownlint-cli from 0.39.0 to 0.41.0

npm: bump markdownlint-cli from 0.39.0 to 0.41.0 #632

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