Skip to content

build(deps): bump softprops/action-gh-release from 4634c16e79c963813287e889244c50009e7f0981 to d99959edae48b5ffffd7b00da66dcdb0a33a52ee #495

build(deps): bump softprops/action-gh-release from 4634c16e79c963813287e889244c50009e7f0981 to d99959edae48b5ffffd7b00da66dcdb0a33a52ee

build(deps): bump softprops/action-gh-release from 4634c16e79c963813287e889244c50009e7f0981 to d99959edae48b5ffffd7b00da66dcdb0a33a52ee #495

Workflow file for this run

name: Static checks
on:
pull_request: {}
push:
branches:
- main
jobs:
go_lint:
name: Go lint
timeout-minutes: 10
runs-on: ubuntu-20.04
container:
image: golang:1.19
steps:
- name: Checkout code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Go lint
run: bin/lint --verbose
go_format:
name: Go format
timeout-minutes: 10
runs-on: ubuntu-20.04
container:
image: golang:1.19
steps:
- name: Checkout code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Format
run: bin/fmt
shellcheck:
name: shellcheck
timeout-minutes: 10
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: shellcheck
# For more information on shellcheck failures:
# https://github.com/koalaman/shellcheck/wiki/Checks
run: |
bin/shellcheck -x -P "./bin" $(grep -rnsle '^#!/usr/bin/env \(bash\|sh\)' ./* | xargs)
markdown_lint:
name: Markdown lint
timeout-minutes: 10
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Markdown lint
run: bin/markdownlint ./**/*.md --ignore node_modules/
chart_docs_diff:
name: Chart readme diff check
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Check docs for diff
run: bin/helm-docs-diff