Skip to content

Commit

Permalink
Fix maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
powerof3 committed Jan 13, 2025
1 parent 1a5f07f commit 1661a07
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/maintenance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/setup-python@v2
- uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.10'

- name: Run clang-format
run: find -type f \( -name *.h -o -name *.cpp \) | xargs clang-format-14 -style=file -i
run: find -type f \( -name *.h -o -name *.cpp \) | xargs clang-format-16 -style=file -i

- name: Glob files
run: python ${{ github.workspace }}/scripts/cmake_generate.py

- uses: stefanzweifel/git-auto-commit-action@v4
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: maintenance

0 comments on commit 1661a07

Please sign in to comment.