Skip to content

Commit

Permalink
docs(version): Bump to v4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jidicula committed Jan 15, 2022
1 parent 03412ba commit 32639e0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![Build and Test](https://github.com/jidicula/clang-format-action/actions/workflows/dockerimage.yml/badge.svg)](https://github.com/jidicula/clang-format-action/actions/workflows/dockerimage.yml) [![shell-lint](https://github.com/jidicula/clang-format-action/workflows/shell-lint/badge.svg?branch=main)](https://github.com/jidicula/clang-format-action/actions?query=workflow%3Ashell-lint+branch%3Amain)

# clang-format-action
GitHub Action for clang-format checks. Note that this Action does **NOT** format your code for you - it only verifies that your repository's code follows your project's formatting conventions.
GitHub Action for `clang-format` checks. Note that this Action does **NOT** format your code for you - it only verifies that your repository's code follows your project's formatting conventions.

You can define your own formatting rules in a `.clang-format` file at your repository root, or you can provide a fallback style (see [`fallback-style`](#inputs)). You can also provide a path to check. If you want to run checks against multiple paths in your repository, you can use this Action in a [matrix run](#multiple-paths).

Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Run clang-format style check for C/C++/Protobuf programs.
uses: jidicula/clang-format-action@v4.4.1
uses: jidicula/clang-format-action@v4.5.0
with:
clang-format-version: '13'
check-path: 'src'
Expand All @@ -107,7 +107,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Run clang-format style check for C/C++/Protobuf programs.
uses: jidicula/clang-format-action@v4.4.1
uses: jidicula/clang-format-action@v4.5.0
with:
clang-format-version: '13'
check-path: ${{ matrix.path }}
Expand All @@ -134,7 +134,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Run clang-format style check for C/C++/Protobuf programs.
uses: jidicula/clang-format-action@v4.4.1
uses: jidicula/clang-format-action@v4.5.0
with:
clang-format-version: '13'
check-path: ${{ matrix.path['check'] }}
Expand Down

0 comments on commit 32639e0

Please sign in to comment.