mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 01:34:07 +08:00
22 lines
381 B
YAML
22 lines
381 B
YAML
name: Format Checks
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
|
|
jobs:
|
|
format_checks:
|
|
runs-on: ubuntu-latest
|
|
container: px4io/px4-dev-clang:2020-08-14
|
|
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
|
|
|