Skip to content

Non-blocking functions #48

Non-blocking functions

Non-blocking functions #48

Workflow file for this run

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.75.1
cd uncrustify && mkdir build && cd build
cmake .. && sudo make install && cd ../..
- name: Run uncrustify
run: make ci_uncrustify