Skip to content

Commit

Permalink
feat: lint workflow with shellcheck (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
tthvo committed Aug 1, 2024
1 parent 9c8b733 commit bd6a1dd
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Lint

on:
push:
branches:
- main
- releases/*
pull_request:

jobs:
shell-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ludeeus/action-shellcheck@master
with:
version: v0.9.0
env:
SHELLCHECK_OPTS: -s bash

0 comments on commit bd6a1dd

Please sign in to comment.