starting to figure out coverall #15
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Ci | |
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 | |
if: ${{ github.ref == 'refs/heads/main' }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: panvimdoc | |
uses: kdheepak/panvimdoc@main | |
with: | |
vimdoc: drash | |
treesitter: true | |
- 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>" | |
test: | |
name: Run Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: rhysd/action-setup-vim@v1 | |
id: vim | |
with: | |
neovim: true | |
version: nightly | |
- name: lua setup | |
uses: leafo/gh-actions-lua@v10 | |
with: | |
luaVersion: "5.1.1" | |
- name: luarocks setup | |
uses: leafo/gh-actions-luarocks@v4 | |
- name: Install dependencies | |
shell: bash | |
run: | | |
luarocks install luacheck | |
luarocks install nlua | |
luarocks install busted | |
luarocks install dkjson | |
luarocks install luafilesystem | |
luarocks install lua-path | |
luarocks install plenary.nvim | |
luarocks install luacov | |
luarocks install luacov-coveralls | |
- name: run test | |
shell: bash | |
run: | | |
busted -c -v | |
- name: Report test coverage | |
if: success() | |
continue-on-error: true | |
run: luacov-coveralls -i drash.nvim -e .luarocks | |
env: | |
COVERALLS_REPO_TOKEN: ${{ github.token }} |