Skip to content

Commit 9aa027b

Browse files
committed
Add GitHub Action -based CI
Fixes #495 Signed-off-by: David Thompson <davthomp@redhat.com>
1 parent c63ca01 commit 9aa027b

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.github/workflows/tests.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Tests
2+
on: [push, pull_request]
3+
jobs:
4+
microprofile-jdt-tests:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Check out repository code
8+
uses: actions/checkout@v4
9+
- name: Set up Eclipse Temurin JDK
10+
uses: actions/setup-java@v2
11+
with:
12+
java-version: '21'
13+
distribution: 'temurin'
14+
- name: Build and test lsp4mp JDT component
15+
working-directory: microprofile.jdt
16+
run: ./mvnw -B -U clean verify
17+
microprofile-ls-tests:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- name: Check out repository code
21+
uses: actions/checkout@v4
22+
- name: Set up Eclipse Temurin JDK
23+
uses: actions/setup-java@v2
24+
with:
25+
java-version: '21'
26+
distribution: 'temurin'
27+
- name: Build and test lsp4mp language server component
28+
working-directory: microprofile.ls/org.eclipse.lsp4mp.ls
29+
run: ./mvnw -B -U clean verify

0 commit comments

Comments
 (0)