mirror of
https://github.com/truecharts/charts.git
synced 2026-07-23 03:21:23 -03:00
20 lines
526 B
YAML
20 lines
526 B
YAML
# This is a workflow to run shellcheck on all scripts
|
|
name: Shell Linter QC
|
|
|
|
# Controls when the action will run. Triggers the workflow on push or pull request
|
|
# events but only for the master branch
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- dev
|
|
- minor-dev
|
|
|
|
jobs:
|
|
Shellcheck:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@50fbc622fc4ef5163becd7fab6573eac35f8462e # v1
|
|
- name: Shell Linter
|
|
uses: azohra/shell-linter@6bbeaa868df09c34ddc008e6030cfe89c03394a1 # v0.6.0
|