Skip to content

Commit

Permalink
#MERGE: prep for v1.0.0-rc1 (#116)
Browse files Browse the repository at this point in the history
initial v1.0.0 release
  • Loading branch information
akielaries authored Apr 29, 2024
1 parent 09b004a commit 0eb5702
Show file tree
Hide file tree
Showing 238 changed files with 4,190 additions and 1,598 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: "Format sourcecode"

# run on pull requests to develop
on:
pull_request:
branches:
- main

jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
# check out HEAD on the branch
ref: ${{ github.head_ref }}
# make sure the parent commit is grabbed as well, because
# that's what will get formatted (i.e. the most recent commit)
fetch-depth: 2
# format the latest commit
- uses: purduesigbots/clang-format-action@1
# use one of clang-format's supported styles or leave this out to use the style in your .clang-format file
with:
style: file
# commit the changes (if there are any)
- name: Commit changes
uses: stefanzweifel/[email protected]
with:
commit_message: 🎨 apply clang-format changes
branch: ${{ github.head_ref }}
Loading

0 comments on commit 0eb5702

Please sign in to comment.