diff options
author | kylo252 <[email protected]> | 2021-08-12 11:31:31 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-08-12 11:31:31 +0200 |
commit | 03b7da74eee555064741fbc54e667eb918e8aa52 (patch) | |
tree | 132bc0d97352c58576a5acd092be9ad7c5e1db00 /.github | |
parent | 4fd72b1be2c1220a519d5b8d58219939a11df0c9 (diff) |
Fix formatting according to style-guide (#1057)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/format.yaml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index 22e56d61..5f9db8cb 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -37,7 +37,8 @@ jobs: run: | GO111MODULE=on go get mvdan.cc/sh/v3/cmd/shfmt + # https://google.github.io/styleguide/shellguide.html - name: Check formatting run: | - shfmt -l -d . + shfmt -i 2 -ci -l -d . |