-
Notifications
You must be signed in to change notification settings - Fork 31
29 lines (29 loc) · 925 Bytes
/
tests.yaml
File metadata and controls
29 lines (29 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: Tests
on: [push, pull_request]
jobs:
microprofile-jdt-tests:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Eclipse Temurin JDK
uses: actions/setup-java@v2
with:
java-version: '21'
distribution: 'temurin'
- name: Build and test lsp4mp JDT component
working-directory: microprofile.jdt
run: ./mvnw -B -U clean verify
microprofile-ls-tests:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Eclipse Temurin JDK
uses: actions/setup-java@v2
with:
java-version: '21'
distribution: 'temurin'
- name: Build and test lsp4mp language server component
working-directory: microprofile.ls/org.eclipse.lsp4mp.ls
run: ./mvnw -B -U clean verify