mirror of https://github.com/sgoudham/nvim.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
336 B
YAML
17 lines
336 B
YAML
2 years ago
|
name: stylua
|
||
|
on:
|
||
|
push:
|
||
|
branches: ["main"]
|
||
|
paths-ignore:
|
||
|
- ".github/**"
|
||
|
|
||
|
jobs:
|
||
|
stylua:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: JohnnyMorganz/stylua-action@1.0.0
|
||
|
with:
|
||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||
|
args: --check --config-path=.stylua.toml .
|