Skip to content

Commit 57cefdd

Browse files
committed
Configure GitHub Actions
1 parent 638f627 commit 57cefdd

File tree

3 files changed

+45
-0
lines changed

3 files changed

+45
-0
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @pivovarit

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "maven"
4+
target-branch: "main"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"
8+
time: "02:00"
9+
- package-ecosystem: "github-actions"
10+
directory: "/"
11+
target-branch: "main"
12+
schedule:
13+
interval: "daily"
14+
time: "02:00"

.github/workflows/build.yml

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

0 commit comments

Comments
 (0)