You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
381 B
21 lines
381 B
name: Format Checks |
|
|
|
on: |
|
push: |
|
branches: |
|
- master |
|
pull_request: |
|
branches: |
|
- '*' |
|
|
|
jobs: |
|
format_checks: |
|
runs-on: ubuntu-latest |
|
container: px4io/px4-dev-clang:2019-10-24 |
|
steps: |
|
- uses: actions/checkout@v1 |
|
- name: install clang-format-6.0 |
|
run: apt install -y clang-format-6.0 |
|
- name: check_format |
|
run: ./tools/format.sh 0 |
|
|
|
|