diff options
| author | Christoph Schlosser <christoph@linux.com> | 2025-06-13 15:36:04 +0200 |
|---|---|---|
| committer | Christoph Schlosser <christoph@linux.com> | 2025-06-13 15:36:04 +0200 |
| commit | 2474f80f6dc498225525b2692d4aed451929dc39 (patch) | |
| tree | 4179f90d7b1444464fb84953e6111d7d11d4e7f3 /nvim/.github/workflows/stylua.yml | |
| parent | 4a26d00769b3df907cc1852b7ad2d21ce37c2713 (diff) | |
| download | dots-2474f80f6dc498225525b2692d4aed451929dc39.tar.gz | |
Remove github stuff from template repo
Diffstat (limited to 'nvim/.github/workflows/stylua.yml')
| -rw-r--r-- | nvim/.github/workflows/stylua.yml | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/nvim/.github/workflows/stylua.yml b/nvim/.github/workflows/stylua.yml deleted file mode 100644 index 75db6c3..0000000 --- a/nvim/.github/workflows/stylua.yml +++ /dev/null @@ -1,21 +0,0 @@ -# Check Lua Formatting -name: Check Lua Formatting -on: pull_request_target - -jobs: - stylua-check: - if: github.repository == 'nvim-lua/kickstart.nvim' - name: Stylua Check - runs-on: ubuntu-latest - steps: - - name: Checkout Code - uses: actions/checkout@v2 - with: - ref: ${{ github.event.pull_request.head.sha }} - - name: Stylua Check - uses: JohnnyMorganz/stylua-action@v3 - with: - token: ${{ secrets.GITHUB_TOKEN }} - version: latest - args: --check . - |