File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -15,15 +15,15 @@ test-watch: ## uses [nodemon](https://nodemon.io/) - watches for changes to lua
1515 @nodemon -e lua -x " $( MAKE) test || exit 1"
1616
1717test-ubuntu : # # Run tests in Ubuntu Docker container (matches CI environment)
18- docker run --rm -v $$(PWD ) :/workspace -w /workspace ubuntu:latest bash -c " \
19- apt-get update -qq && \
20- apt-get install -y -qq software-properties-common git curl make apt-utils gcc && \
18+ @ docker run --rm -v $$(PWD ) :/workspace -w /workspace ubuntu:latest bash -c " \
19+ apt-get update && \
20+ apt-get install -y software-properties-common git curl make apt-utils gcc && \
2121 add-apt-repository -y ppa:neovim-ppa/unstable && \
22- apt-get update -qq && \
23- apt-get install -y -qq neovim lua-check && \
22+ apt-get update && \
23+ apt-get install -y neovim lua-check && \
2424 mkdir -p /root/.local/share/nvim/lazy/ && \
25- git clone --depth 1 -q https://github.com/nvim-lua/plenary.nvim.git /root/.local/share/nvim/lazy/plenary.nvim && \
26- git clone --depth 1 --branch v0.10.0 -q https://github.com/nvim-treesitter/nvim-treesitter.git /root/.local/share/nvim/lazy/nvim-treesitter && \
25+ git clone --depth 1 https://github.com/nvim-lua/plenary.nvim.git /root/.local/share/nvim/lazy/plenary.nvim && \
26+ git clone --depth 1 --branch v0.10.0 https://github.com/nvim-treesitter/nvim-treesitter.git /root/.local/share/nvim/lazy/nvim-treesitter && \
2727 make test"
2828
2929check : # # uses [luacheck](https://github.com/mpeterv/luacheck) - checks for any type errors or style issues
You can’t perform that action at this time.
0 commit comments