Reduce timeout for network time synchronization to 15 seconds #1735
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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@v4 | |
with: | |
submodules: true | |
- name: Check Dockerfile | |
uses: brpaz/hadolint-action@v1.5.0 | |
with: | |
dockerfile: Dockerfile | |
- name: Check shell scripts | |
uses: ludeeus/action-shellcheck@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/*/* |