Add kernel options required for Atheros 12k wirelss adapters #1719
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/[email protected] | |
with: | |
dockerfile: Dockerfile | |
- name: Check shell scripts | |
uses: ludeeus/[email protected] | |
with: | |
ignore_paths: buildroot | |
- name: Check buildroot-external packages | |
run: | | |
buildroot/utils/check-package --exclude PackageHeader --exclude Upstream --br2-external buildroot-external/package/*/* |