There was an error while loading. Please reload this page.
1 parent d5db1e1 commit 732b554Copy full SHA for 732b554
1 file changed
.github/workflows/clang-format.yml
@@ -8,19 +8,15 @@ on:
8
jobs:
9
clang-format:
10
runs-on: ubuntu-latest
11
- strategy:
12
- matrix:
13
- python-version: ["3.12"]
14
steps:
15
- uses: actions/checkout@v4
16
- - name: Set up Python ${{ matrix.python-version }}
+ - name: Set up Python 3.12
17
uses: actions/setup-python@v2
18
with:
19
- python-version: ${{ matrix.python-version }}
+ python-version: "3.12"
20
- name: Install dependencies
21
run: |
22
- python -m pip install --upgrade pip
23
- pip install clang-format==20.1.8 ripgrep
+ pip install clang-format==20.1.8 ripgrep==14.1.0
24
- name: Running clang-format
25
26
rg . --type cpp --type c --files-with-matches \
0 commit comments