Skip to content

Commit 17321e0

Browse files
author
MFrikken
committed
Fixed typo in ci.yml on-section
1 parent 903ce86 commit 17321e0

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/ci.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Java CI
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+
15+
strategy:
16+
matrix:
17+
java-version: [17]
18+
19+
steps:
20+
- name: Check out repository
21+
uses: actions/checkout@v2
22+
23+
- name: Set up JDK ${{ matrix.java-version }}
24+
uses: actions/setup-java@v2
25+
with:
26+
java-version: ${{ matrix.java-version }}
27+
distribution: 'adoptopenjdk'
28+
29+
- name: Run tests
30+
run: mvn test
31+
32+
- name: Build with Maven
33+
run: mvn clean install

0 commit comments

Comments
 (0)