We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faac2e9 commit 920dfa3Copy full SHA for 920dfa3
1 file changed
.github/workflows/pre-commit.yml
@@ -20,13 +20,18 @@ jobs:
20
with:
21
python-version: '3.12'
22
23
- - uses: BSFishy/pip-action@v1
+ - name: Set up pip packages
24
+ uses: BSFishy/pip-action@v1
25
26
packages: |
27
+ codespell
28
pylint
29
- - name: Version of clang-format
30
+ - name: Set up clang-format
31
run: |
32
+ sudo apt-get install -y clang-format-14
33
+ sudo unlink /usr/bin/clang-format
34
+ sudo ln -s /usr/bin/clang-format-14 /usr/bin/clang-format
35
clang-format --version
36
37
- name: Run pre-commit checks
0 commit comments