mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
24 lines
410 B
YAML
24 lines
410 B
YAML
name: Clang Tidy
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container: px4io/px4-dev-clang:2021-09-08
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
with:
|
|
token: ${{secrets.ACCESS_TOKEN}}
|
|
|
|
- uses: corrupt952/actions-retry-command@v1.0.7
|
|
with:
|
|
command: make clang-tidy-quiet
|
|
max_attempts: 3
|