LunarVim/.github/workflows/format.yaml

44 lines
921 B
YAML
Raw Normal View History

name: format
on:
push:
branches: '**'
pull_request:
branches:
- 'master'
- 'rolling'
jobs:
stylua-check:
name: "Formatting check with Stylua"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Prepare dependencies
run: |
sudo apt install -y curl unzip --no-install-recommends
bash ./utils/installer/install_stylua.sh
- name: Check formatting
run: |
2021-07-25 20:43:37 +02:00
./utils/stylua --config-path .stylua.toml -c .
2021-07-19 18:22:49 +02:00
shfmt-check:
name: "Formatting check with shfmt"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
2021-07-19 18:22:49 +02:00
- 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
- name: Check formatting
run: |
shfmt -l -d .