Update ubuntu-test command to be louder so it doesn't appear frozen #730
Workflow file for this run
This file contains hidden or 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: Tests | |
| on: | |
| push: | |
| branches: [ "*" ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v3 | |
| - name: Install Neovim | |
| run: sudo snap install nvim --classic | |
| - name: Install Plenary | |
| run: | | |
| mkdir -p $HOME/.local/share/nvim/lazy/ | |
| git clone https://github.com/nvim-lua/plenary.nvim.git | |
| mv plenary.nvim $HOME/.local/share/nvim/lazy/ | |
| - name: Install nvim-treesitter | |
| run: | | |
| mkdir -p $HOME/.local/share/nvim/lazy/ | |
| git clone https://github.com/nvim-treesitter/nvim-treesitter.git | |
| mv nvim-treesitter $HOME/.local/share/nvim/lazy/ | |
| - name: Run luacheck type check / linter | |
| run: | | |
| sudo apt-get install lua-check -y --no-install-recommends | |
| make check | |
| - name: Check for errant util calls | |
| run: make no-utils | |
| - name: Run Tests | |
| run: make test | |