tests: fix realtime-kernel output check #9879
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
--- | |
name: CI (workflows) | |
on: | |
push: | |
pull_request: | |
defaults: | |
run: | |
shell: sh -ex {0} | |
jobs: | |
lint-and-style: | |
name: Static Analysis | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies | |
run: | | |
sudo DEBIAN_FRONTEND=noninteractive apt-get -qy update | |
sudo DEBIAN_FRONTEND=noninteractive apt-get -qy install yamllint | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: Linting and style | |
working-directory: .github/workflows | |
run: yamllint --strict . |