Skip to content

Commit 3c7e0c1

Browse files
authored
Create runTest.yml
1 parent ef50784 commit 3c7e0c1

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/runTest.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Java CI with Maven
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
workflow_dispatch:
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
- name: Set up JDK 8
16+
uses: actions/setup-java@v3
17+
with:
18+
java-version: '8'
19+
distribution: 'adopt'
20+
cache: maven
21+
- name: Build with Maven
22+
run: mvn -B package

0 commit comments

Comments
 (0)