ci: fix #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nightly | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
push: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
env: | |
NVIM_TS_SHA: master | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: leafo/gh-actions-lua@v10 | |
with: | |
luaVersion: "5.1.5" | |
- uses: leafo/gh-actions-luarocks@v4 | |
- name: Download nvim-test | |
run: make nvim-test | |
- name: Install parsers | |
run: make parsers | |
- name: Run Test | |
run: make test NVIM_TS_SHA=$NVIM_TS_SHA | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "docs: Update README.md" |