mirror of
https://github.com/versity/versitygw.git
synced 2026-02-04 01:12:03 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [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...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
308 B
YAML
18 lines
308 B
YAML
name: shellcheck
|
|
permissions: {}
|
|
on: pull_request
|
|
jobs:
|
|
|
|
build:
|
|
name: Run shellcheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Run checks
|
|
run: |
|
|
shellcheck --version
|
|
shellcheck -e SC1091 tests/*.sh tests/*/*.sh
|