LunarVim/.github/workflows/format.yaml

42 lines
879 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: Lint with stylua
uses: JohnnyMorganz/stylua-action@1.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
# CLI arguments
args: --check .
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"
2021-07-19 18:22:49 +02:00
- name: Use shfmt
run: |
GO111MODULE=on go get mvdan.cc/sh/v3/cmd/shfmt
# https://google.github.io/styleguide/shellguide.html
2021-07-19 18:22:49 +02:00
- name: Check formatting
run: make style-sh