mirror of
https://github.com/classy-giraffe/easy-arch.git
synced 2025-11-17 11:30:55 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
22 lines
365 B
YAML
22 lines
365 B
YAML
name: ShellCheck
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- main
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**.gitignore'
|
|
- '**.md'
|
|
- '**.yml'
|
|
- 'LICENSE'
|
|
|
|
jobs:
|
|
shellcheck:
|
|
name: Bash syntax checker
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: Run ShellCheck
|
|
uses: ludeeus/action-shellcheck@master
|