mirror of
https://github.com/moveit/moveit_task_constructor.git
synced 2025-11-04 14:49:57 +08:00
22.04 doesn't provide clang-format-10. clang-format-12 is the latest support by 20.04, but this introduces some undesired reformatting.
31 lines
784 B
YAML
31 lines
784 B
YAML
# This is a format job. Pre-commit has a first-party GitHub action, so we use
|
|
# that: https://github.com/pre-commit/action
|
|
|
|
name: Format
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
push:
|
|
|
|
jobs:
|
|
pre-commit:
|
|
name: pre-commit
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: recursive
|
|
- name: Install clang-format-10
|
|
run: sudo apt-get install clang-format-10
|
|
- uses: rhaschke/install-catkin_lint-action@v1.0
|
|
with:
|
|
distro: noetic
|
|
- uses: pre-commit/action@v3.0.0
|
|
id: precommit
|
|
- name: Upload pre-commit changes
|
|
if: failure() && steps.precommit.outcome == 'failure'
|
|
uses: rhaschke/upload-git-patch-action@main
|
|
with:
|
|
name: pre-commit
|