Skip to content

Commit a064bc2

Browse files
committed
ci: run mvn test on push and pull requests
1 parent d6998af commit a064bc2

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: ["master"]
6+
pull_request:
7+
8+
permissions:
9+
contents: read
10+
11+
jobs:
12+
test:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v4
18+
19+
- name: Set up Java 23
20+
uses: actions/setup-java@v4
21+
with:
22+
distribution: temurin
23+
java-version: "23"
24+
cache: maven
25+
26+
- name: Run tests
27+
run: mvn -B test

0 commit comments

Comments
 (0)