diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-10 17:36:50 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-10 17:36:50 +0100 |
| commit | 512ec5b236fc550526d0a9cc37c9e9681459af52 (patch) | |
| tree | 719734f69736ff6c8b4b216bbcf9ae6f2efc5e98 | |
| parent | 734d9ef092dfd5be08e39af8eaebe7c5cde3bac4 (diff) | |
| parent | 51c79565e0440873e1daf37eee70ce92e842b174 (diff) | |
| download | redot-cpp-512ec5b236fc550526d0a9cc37c9e9681459af52.tar.gz | |
Merge pull request #990 from akien-mga/ci-clang-format-15
CI: Use clang-format 15
| -rw-r--r-- | .github/workflows/static_checks.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/static_checks.yml b/.github/workflows/static_checks.yml index 5960288..16cbb8b 100644 --- a/.github/workflows/static_checks.yml +++ b/.github/workflows/static_checks.yml @@ -19,14 +19,14 @@ jobs: sudo rm -f /etc/apt/sources.list.d/* sudo cp -f misc/ci/sources.list /etc/apt/sources.list wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - - sudo apt-add-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-13 main" + sudo apt-add-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-15 main" sudo apt-get update - name: Install dependencies run: | - sudo apt-get install -qq dos2unix recode clang-format-13 libxml2-utils python3-pip moreutils + sudo apt-get install -qq dos2unix recode clang-format-15 libxml2-utils python3-pip moreutils sudo update-alternatives --remove-all clang-format || true - sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-13 100 + sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-15 100 sudo pip3 install black==22.3.0 pygments pytest==7.1.2 mypy==0.971 - name: File formatting checks (file_format.sh) |
