Bumps [brpaz/hadolint-action](https://github.com/brpaz/hadolint-action) from 1.1.0 to 1.5.0. - [Release notes](https://github.com/brpaz/hadolint-action/releases) - [Changelog](https://github.com/brpaz/hadolint-action/blob/master/.releaserc) - [Commits](https://github.com/brpaz/hadolint-action/compare/v1.1.0...v1.5.0) --- updated-dependencies: - dependency-name: brpaz/hadolint-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
29 lines
685 B
YAML
29 lines
685 B
YAML
# Home Assistant Operating System pull-request checks
|
|
|
|
name: PR checks
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
linters:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
|
|
- name: Check Dockerfile
|
|
uses: brpaz/hadolint-action@v1.5.0
|
|
with:
|
|
dockerfile: Dockerfile
|
|
|
|
- name: Check shell scripts
|
|
uses: ludeeus/action-shellcheck@1.1.0
|
|
with:
|
|
ignore: buildroot buildroot-external/package/xe-guest-utilities
|
|
|
|
- name: Check buildroot-external packages
|
|
run: |
|
|
buildroot/utils/check-package --exclude PackageHeader --br2-external buildroot-external/package/*/*
|