Skip to content

Commit cf37351

Browse files
Integrate GitHub CI build
1 parent 3e350c5 commit cf37351

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: cc-warc-examples build
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
java: [ 8, 11, 17, 21 ]
17+
name: Java ${{ matrix.java }}
18+
steps:
19+
- uses: actions/checkout@v6
20+
21+
- name: Setup JDK
22+
uses: actions/setup-java@v5
23+
with:
24+
distribution: 'temurin'
25+
java-version: ${{ matrix.java }}
26+
cache: 'maven'
27+
28+
- name: Build
29+
run: mvn verify javadoc:aggregate

0 commit comments

Comments
 (0)