From f660c7b2b182a76bfe6ddcc85e4f70451e22d24c Mon Sep 17 00:00:00 2001 From: Ali Almohaya Date: Mon, 10 Oct 2022 01:16:09 +0300 Subject: [PATCH] chore: remove stylua gh action --- .github/workflows/stylua_check.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/stylua_check.yml diff --git a/.github/workflows/stylua_check.yml b/.github/workflows/stylua_check.yml deleted file mode 100644 index 7bbdeb4..0000000 --- a/.github/workflows/stylua_check.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: lint with stylua -on: - workflow_dispatch: - pull_request: - branches: - - "**" - push: - branches: - - "**" -jobs: - stylua: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: JohnnyMorganz/stylua-action@v1 - with: - token: ${{ secrets.GH_TOKEN }} - # CLI arguments - args: --check --config-path stylua.toml --glob 'lua/**/*.lua' -- lua - # Specify `version` to pin a specific version, otherwise action will always use latest version/automatically update