We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65fd71e commit ca734f1Copy full SHA for ca734f1
2 files changed
.github/workflows/clang-format/clang-format.sh
@@ -2,11 +2,11 @@
2
3
if (( $# > 0 )); then
4
# received arguments, format those files
5
- clang-format-18 -i "$@"
+ clang-format-20 -i "$@"
6
else
7
# received no arguments, find files on our own
8
find include/ src/ test/ examples/ \
9
-regextype egrep \
10
-type f -regex '.*\.(hpp|cpp|hpp\.in)$' \
11
- | xargs clang-format-18 -i
+ | xargs clang-format-20 -i
12
fi
environment.yml
@@ -3,5 +3,5 @@ name: openPMD-api-dev
channels:
- conda-forge
dependencies:
- - clang-format-18=18.1.2
+ - clang-format-20=20.1.0
- bash=5
0 commit comments