This repository has been archived by the owner on Aug 1, 2024. It is now read-only.
Make warning more visible in readme #23
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: Check State Machine Diagram | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
container: | |
- 'px4io/px4-dev-simulation-bionic:2020-09-14' | |
container: ${{ matrix.container }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: submodule update | |
run: git submodule update --init --recursive | |
- name: Install clang-format | |
run: apt update && apt install -y clang-format-6.0 | |
- name: Check State Machine Diagram | |
working-directory: tools | |
run: | | |
./check_state_machine_diagrams.sh |