Skip to content

Commit 0d6fe6c

Browse files
committed
Use GitHub Action with Java 8
1 parent 18e1f1e commit 0d6fe6c

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ on: [push, pull_request]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-18.04
9-
108
steps:
11-
- name: Checkout
12-
uses: actions/checkout@v2
9+
- uses: actions/checkout@v6
10+
- uses: actions/setup-java@v5
11+
with:
12+
java-version: '8'
13+
distribution: 'temurin'
1314
- name: Build and Test
14-
run: scripts/test.sh
15+
run: mvn verify

0 commit comments

Comments
 (0)