misc: Update libs after adding AV1 support (#259) #107
Workflow file for this run
This file contains hidden or 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: clang-format Check | |
on: | |
pull_request: | |
paths: | |
- '*.cpp' | |
- '*.hpp' | |
push: | |
paths: | |
- '*.cpp' | |
- '*.hpp' | |
jobs: | |
format: | |
runs-on: ubuntu-22.04 | |
name: Formatting Check | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run clang-format on root cpp/hpp files | |
uses: jidicula/[email protected] | |
with: | |
clang-format-version: '20' | |
check-path: '.' | |
include-regex: '^[^/]+\.(cpp|hpp)$' |