Skip to content

Bump pillow from 9.1.1 to 10.3.0 in /examples/camera_triggered #52

Bump pillow from 9.1.1 to 10.3.0 in /examples/camera_triggered

Bump pillow from 9.1.1 to 10.3.0 in /examples/camera_triggered #52

Workflow file for this run

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