mirror of
https://github.com/maxmx03/solarized.nvim.git
synced 2026-09-16 02:16:30 -04:00
35 lines
912 B
YAML
35 lines
912 B
YAML
name: Test
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Stylua
|
|
uses: JohnnyMorganz/stylua-action@v3
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
version: latest
|
|
args: --check .
|
|
|
|
|
|
docs:
|
|
runs-on: ubuntu-latest
|
|
name: pandoc to vimdoc
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: panvimdoc
|
|
uses: kdheepak/panvimdoc@main
|
|
with:
|
|
vimdoc: solarized.nvim
|
|
treesitter: true
|
|
version: "NVIM v0.9.4"
|
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
commit_message: 'chore(doc): auto generate docs'
|
|
commit_user_name: "github-actions[bot]"
|
|
commit_user_email: "github-actions[bot]@users.noreply.github.com"
|
|
commit_author: "github-actions[bot] <github-actions[bot]@users.noreply.github.com>"
|