Bump pillow from 9.1.1 to 10.3.0 in /examples/camera_triggered #52
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: CoralMicro Lint | |
on: [pull_request] | |
jobs: | |
clang-format: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Installing dependencies | |
run: | | |
wget https://raw.githubusercontent.com/llvm-mirror/clang/master/tools/clang-format/git-clang-format -O /tmp/git-clang-format | |
chmod +x /tmp/git-clang-format | |
- name: Checking out repository | |
uses: actions/checkout@7884fcad6b5d53d10323aee724dc68d8b9096a2e # v2 | |
- name: Fetching Base Branch | |
run: git fetch --no-tags --prune --depth=1 origin "${GITHUB_BASE_REF?}:${GITHUB_BASE_REF?}" | |
- name: Running clang-format on changed source files | |
run: | | |
/tmp/git-clang-format "${GITHUB_BASE_REF?}" --binary=clang-format-12 --style=file | |
git diff --exit-code |