bpersec: also print total read, prefix quantities #687
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: | |
- master | |
paths: | |
- src/*/** | |
- src/.make | |
- Makefile | |
- .github/** | |
pull_request: | |
branches: | |
- master | |
paths: | |
- src/*/** | |
- src/.make | |
- Makefile | |
- .github/** | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: dep | |
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 | |
- name: analyse | |
run: | | |
make analyse |