Remove BITS_PER_LONG reference #59
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
name: Stylechecker | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
# --- Style check stages --- | |
style: | |
name: Stylechecker | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install recent uncrustify | |
run: | | |
# we need this because of a bug introduced in https://github.com/uncrustify/uncrustify/pull/3655 | |
git clone https://github.com/uncrustify/uncrustify.git --branch uncrustify-0.79.0 | |
cd uncrustify && mkdir build && cd build | |
cmake .. && sudo make install && cd ../.. | |
- name: Run uncrustify | |
run: make ci_uncrustify |