diff options
| author | dundargoc <gocdundar@gmail.com> | 2024-10-02 14:58:03 +0200 |
|---|---|---|
| committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-10-02 15:20:12 +0200 |
| commit | 71ff1585a8a2d66c13f0da7d76e7ce4922128d8f (patch) | |
| tree | d9accdf9dd0fcfc9d21e098c915956fd8ba7f8e7 /.github/workflows/test.yml | |
| parent | docs: update configs.md (diff) | |
| download | nvim-lspconfig-71ff1585a8a2d66c13f0da7d76e7ce4922128d8f.tar nvim-lspconfig-71ff1585a8a2d66c13f0da7d76e7ce4922128d8f.tar.gz nvim-lspconfig-71ff1585a8a2d66c13f0da7d76e7ce4922128d8f.tar.bz2 nvim-lspconfig-71ff1585a8a2d66c13f0da7d76e7ce4922128d8f.tar.lz nvim-lspconfig-71ff1585a8a2d66c13f0da7d76e7ce4922128d8f.tar.xz nvim-lspconfig-71ff1585a8a2d66c13f0da7d76e7ce4922128d8f.tar.zst nvim-lspconfig-71ff1585a8a2d66c13f0da7d76e7ce4922128d8f.zip | |
ci: refactor ci output
Separate install step from test step so the output from each isn't mixed with each other.
Also add lint-like workflows to `lint.yml`.
Diffstat (limited to '.github/workflows/test.yml')
| -rw-r--r-- | .github/workflows/test.yml | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8d5f7a75..d7b14d3e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,17 +20,13 @@ jobs: neovim: true version: nightly - - name: luajit - uses: leafo/gh-actions-lua@v10 + - uses: leafo/gh-actions-lua@v10 with: luaVersion: "luajit-openresty" + - uses: leafo/gh-actions-luarocks@v4 - - name: luarocks - uses: leafo/gh-actions-luarocks@v4 + - name: Install vusted + run: luarocks install vusted - - name: run test - shell: bash - run: | - luarocks install luacheck - luarocks install vusted - vusted ./test + - name: Run test + run: vusted ./test |
