Skip to content

Update README.md and project_setup.py #4

Update README.md and project_setup.py

Update README.md and project_setup.py #4

Workflow file for this run

name: Format
on:
push:
branches: main
permissions:
contents: write
jobs:
maintenance:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run clang-format
uses: DoozyX/[email protected]
with:
source: "."
extensions: "h, cpp"
clangFormatVersion: 16
inplace: true
- name: Run Prettier
uses: actionsx/prettier@v3
with:
args: --write "${{ github.workspace }}/*.json"
- name: Add & Commit
uses: EndBug/[email protected]
with:
message: "ci: formatting"
committer_name: maintenance
committer_email: 41898282+github-actions[bot]@users.noreply.github.com
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}