-
-
Notifications
You must be signed in to change notification settings - Fork 14
40 lines (35 loc) · 852 Bytes
/
docs.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: docs
on:
workflow_dispatch: {}
push:
branches:
- main
- develop
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
token: ${{ secrets.TOKEN }}
fetch-depth: 0
- name: Setup neovim
uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: nightly
- name: Re-generate docs
shell: bash
run: make docs
- name: Run tests
shell: bash
run: make test
- name: Commit and Push Changes
uses: EndBug/add-and-commit@v7
with:
committer_name: GitHub Actions
committer_email: actions@github.com
message: |
Re-generate docs
This commit was performed automatically by GitHub Actions.