LunarVim/.github/workflows/format.yaml
kylo252 48d1c38fa8
chore(plugins): bump version (#3248)
* ci: update workflows

* chore(plugins): bump version

* chore: update depdecated settings for comment.nvim

* chore(lsp): update skiplist

* fixup!: take 2 for comment.nvim
2022-10-15 18:32:11 +02:00

45 lines
948 B
YAML

name: format
on:
pull_request:
branches:
- "rolling"
paths:
- 'lua/**'
- 'snapshots/**'
- 'tests/**'
- 'utils/**'
jobs:
stylua-check:
name: "Formatting check with Stylua"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Lint with stylua
uses: JohnnyMorganz/stylua-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
# CLI arguments
version: 0.15.1
args: --check .
shfmt-check:
name: "Formatting check with shfmt"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: "1.16"
- name: Use shfmt
run: |
GO111MODULE=on go get mvdan.cc/sh/v3/cmd/shfmt
# https://google.github.io/styleguide/shellguide.html
- name: Check formatting
run: make style-sh