mirror of
https://github.com/google/blockly.git
synced 2026-01-08 09:30:06 +01:00
Bumps [DoozyX/clang-format-lint-action](https://github.com/DoozyX/clang-format-lint-action) from 0.13 to 0.14. - [Release notes](https://github.com/DoozyX/clang-format-lint-action/releases) - [Commits](https://github.com/DoozyX/clang-format-lint-action/compare/v0.13...v0.14) --- updated-dependencies: - dependency-name: DoozyX/clang-format-lint-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
29 lines
844 B
YAML
29 lines
844 B
YAML
name: Check clang format
|
|
|
|
# N.B.: Runs with a read-only repo token. Safe(ish) to check out the
|
|
# submitted branch.
|
|
on: [pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
clang-formatter:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: DoozyX/clang-format-lint-action@v0.14
|
|
with:
|
|
source: 'core'
|
|
extensions: 'js'
|
|
# This should be as close as possible to the version that the npm
|
|
# package supports. This can be found by running:
|
|
# npx clang-format --version.
|
|
clangFormatVersion: 13
|
|
|
|
# The Report clang format workflow (report_clang_format.yml) will
|
|
# run (if required) after this one to post a comment to the PR.
|
|
# (Note that the version of that workflow run will be the one on
|
|
# the master (default) branch, not the PR target branch.)
|