Skip to content

Allow creation of local conan package #306

Allow creation of local conan package

Allow creation of local conan package #306

name: Run cmake-format linter
on:
pull_request:
branches:
- master
- develop
types:
- opened
- reopened
- synchronize
- ready_for_review
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
if: github.event_name == 'pull_request' && github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ssh-key: ${{secrets.DEPLOY_KEY}}
- name: Format CMake files
id: cmake-format
uses: PuneetMatharu/[email protected]
with:
args: --config-files .cmake-format.py --in-place
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_user_name: cmake-format-bot
commit_message: 'Automated commit of cmake-format changes.'