Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-go / .github / workflows / update.yml
1 name: Update
2
3 on:
4   push:
5   schedule:
6     - cron:  '0 * * * *'
7
8 jobs:
9   main:
10     runs-on: ubuntu-latest
11     steps:
12       - uses: actions/checkout@v2
13       - uses: actions/setup-node@v1
14         with: { node-version: '12' }
15       - run: ./scripts/update-commands.js
16       - run: ./scripts/update-options.js
17       - run: ./scripts/update-options-interface.js
18       - run: ./scripts/update-snippets.js
19       - run: ./scripts/update-tables.sh
20       - run: git diff
21       - run: '[[ "$(git status -s)" = "" ]] ||  exit 1'
22