diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2022-05-11 08:54:24 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-11 08:54:24 +0200 |
| commit | cb7ab98925d6923fffcdecdc7013d33018125b14 (patch) | |
| tree | fc5811e862fb40dd59b3e11412eaa956136f4916 /.github/workflows | |
| parent | e50b1fe60d87cbe7798ce921f08ea38a4750fa99 (diff) | |
| parent | aefdc6783cb77f09786542c90901a9e7120bea42 (diff) | |
| download | rneovim-cb7ab98925d6923fffcdecdc7013d33018125b14.tar.gz rneovim-cb7ab98925d6923fffcdecdc7013d33018125b14.tar.bz2 rneovim-cb7ab98925d6923fffcdecdc7013d33018125b14.zip | |
Merge pull request #18487 from clason/stylua
CI: format and lint runtime with Stylua
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1aa0906ffc..87c270afbe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -87,6 +87,13 @@ jobs: run: ./ci/run_lint.sh clint-full - if: "!cancelled()" + name: stylua + uses: JohnnyMorganz/stylua-action@1.0.0 + with: + token: ${{ secrets.GITHUB_TOKEN }} + args: --check runtime/ + + - if: "!cancelled()" name: lualint run: ./ci/run_lint.sh lualint |