blank-screens: fix not being able to blank multiple monitors at the s… #1113
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: Analyse | |
on: | |
push: | |
branches: | |
- '**' | |
paths: | |
- .make | |
- src/*/** | |
- src/.make | |
- Makefile | |
- .github/** | |
pull_request: | |
branches: | |
- '**' | |
paths: | |
- .make | |
- src/** | |
- src/.make | |
- Makefile | |
- .github/** | |
jobs: | |
analyse: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install workflow dependencies | |
run: | | |
sudo apt-get update --fix-missing | |
sudo apt-get -y install moreutils shellcheck pylint clang-tools cppcheck libbsd-dev | |
git submodule update --init --recursive | |
env: | |
SHELL_VERBOSE: 1 | |
- name: Analyse source files | |
run: | | |
./.make analyse | |
env: | |
SHELL_VERBOSE: 1 |