Skip to content

sudo-bot/action-shellcheck

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A GitHub action to run ShellCheck

Go to ShellCheck at GitHub

You can find the image on Docker Hub

Docker Pulls

You can find the image on Docker Hub

I use the base image koalaman/shellcheck for this action

This action has make and bash.

Example usage

  - uses: actions/checkout@v2
  - name: run shellcheck
    uses: sudo-bot/action-shellcheck@latest
    with:
        # https://github.com/koalaman/shellcheck#how-to-use
        cli-args: "myscript"

Advanced usage

  - uses: actions/checkout@v2
  - name: run shellcheck
    uses: sudo-bot/action-shellcheck@latest
    with:
        # https://github.com/koalaman/shellcheck#how-to-use
        cli-args: "--format=checkstyle --severity=info script.sh"