Skip to content

Commit 160029b

Browse files
committed
ci
1 parent 832005b commit 160029b

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: build and test on pull request
2+
on:
3+
pull_request:
4+
branches: [main]
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v5
10+
- name: Set up JDK 11 for x64
11+
uses: actions/setup-java@v4
12+
with:
13+
java-version: "11"
14+
distribution: "temurin"
15+
architecture: x64
16+
- run: mvn package -Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true

0 commit comments

Comments
 (0)