Bump third_party/lib_nn from 0a08d7f
to e722744
#155
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto-format | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
apply-formatting: | |
if: ${{ github.event.issue.pull_request }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone git repo | |
uses: actions/checkout@v2 | |
- id: format | |
uses: xmos/[email protected] | |
with: | |
file-extensions: | | |
c h cpp hpp | |
exclude-dirs: "./third-party ./utils/lib_flexbuffers" | |
c-style: llvm | |
token: ${{ secrets.GITHUB_TOKEN }} |