sumduration: fix sometimes not printing newline #1154
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 libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev | |
git submodule update --init --recursive | |
env: | |
SHELL_VERBOSE: 1 | |
- name: Analyse source files | |
run: | | |
./.make analyse | |
env: | |
SHELL_VERBOSE: 1 |