We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aba10f3 commit 9d87839Copy full SHA for 9d87839
1 file changed
.github/workflows/test.yml
@@ -16,6 +16,22 @@ jobs:
16
with:
17
neovim: true
18
version: stable
19
+
20
+ - name: Set up JDK
21
+ uses: actions/setup-java@v3
22
+ with:
23
+ distribution: 'temurin'
24
+ java-version: '21'
25
+ # cache: 'maven' # Change to 'gradle' if using Gradle
26
27
+ - name: Set up PHP
28
+ uses: shivammathur/setup-php@v2
29
30
+ php-version: '8.2'
31
+ extensions: xml
32
+ coverage: none # Options: none, xdebug, pcov
33
+ tools: composer:v2
34
35
- name: Install dependencies
36
run: |
37
git clone --depth 1 https://github.com/nvim-lua/plenary.nvim ~/.local/share/nvim/site/pack/vendor/start/plenary.nvim
@@ -36,5 +52,5 @@ jobs:
52
- name: debug
53
if: always()
38
54
39
- sudo cat ~/.local/state/nvim/lsp.log
55
+ # sudo cat ~/.local/state/nvim/lsp.log
40
56
java --version
0 commit comments