mirror of
https://github.com/home-assistant/operating-system.git
synced 2026-05-08 09:39:03 +01:00
6ca430fe33
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.1 to 6.0.2. - [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/8e8c483db84b4bee98b60c0593521ed34d9990e8...de0fac2e4500dabe0009e67214ff5f5447ce83dd) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
35 lines
945 B
YAML
35 lines
945 B
YAML
# Home Assistant Operating System pull-request checks
|
|
|
|
name: PR checks
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
linters:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Install additional dependencies
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get -y install \
|
|
python3-flake8
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
submodules: true
|
|
|
|
- name: Check Dockerfile
|
|
uses: hadolint/hadolint-action@2332a7b74a6de0dda2e2221d575162eba76ba5e5 # v3.3.0
|
|
with:
|
|
dockerfile: Dockerfile
|
|
|
|
- name: Check shell scripts
|
|
uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 # 2.0.0
|
|
with:
|
|
ignore_paths: buildroot
|
|
|
|
- name: Check buildroot-external packages
|
|
run: |
|
|
buildroot/utils/check-package --exclude PackageHeader --exclude Upstream --br2-external buildroot-external/package/*/*
|