mirror of
https://github.com/gbprod/nord.nvim.git
synced 2026-08-29 18:24:18 -05:00
22 lines
386 B
YAML
22 lines
386 B
YAML
name: Integration
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
schedule:
|
|
- cron: '0 7 * * 1'
|
|
|
|
jobs:
|
|
stylua:
|
|
name: Check codestyle
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: JohnnyMorganz/stylua-action@v1
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
args: --color always --check .
|
|
|