We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de21066 commit e7aa0bfCopy full SHA for e7aa0bf
.github/workflows/pre-commit.yml
@@ -14,7 +14,12 @@ jobs:
14
- uses: actions/setup-python@v5
15
with:
16
python-version: '3.x'
17
+ - name: Install shfmt
18
+ run: |
19
+ curl -L https://github.com/mvdan/sh/releases/download/v3.8.0/shfmt_v3.8.0_linux_amd64 -o /tmp/shfmt
20
+ chmod +x /tmp/shfmt
21
+ sudo mv /tmp/shfmt /usr/local/bin/shfmt
22
- uses: pre-commit/action@v3.0.0
23
- entry: pre-commit run --all-files
24
+ extra_args: --all-files
25
0 commit comments