diff options
author | Abouzar Parvan <[email protected]> | 2021-08-17 12:07:11 +0430 |
---|---|---|
committer | GitHub <[email protected]> | 2021-08-17 07:37:11 +0000 |
commit | 1cc2452eb7b76aad36a6d9d210abff88edf6721a (patch) | |
tree | 73327aecc065e55d51bfaca3a589542e56b7ac77 /.github/workflows | |
parent | c76cc0ea8ae793b4feb0c28407d0f0de104aef43 (diff) |
[Bugfix] ignore jdtls to fix `CI` (#1339)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/format.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/lint.yaml | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index 5f9db8cb..142ba7f1 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -40,5 +40,5 @@ jobs: # https://google.github.io/styleguide/shellguide.html - name: Check formatting run: | - shfmt -i 2 -ci -l -d . + shfmt -f . | grep -v jdtls | xargs shfmt -i 2 -ci -l -d diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index f5aab0eb..d187f497 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -32,3 +32,4 @@ jobs: uses: ludeeus/action-shellcheck@master with: scandir: './utils' + ignore: 'bin' |