Skip to content
This repository was archived by the owner on May 11, 2024. It is now read-only.

Commit ff6ff00

Browse files
committed
Add build.yml for Build Action
1 parent 7cc8324 commit ff6ff00

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/build.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: 'Build with Maven'
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
strategy:
8+
fail-fast: false
9+
matrix:
10+
os: [ubuntu-latest, windows-latest, macos-latest]
11+
12+
name: 'Build with Maven'
13+
runs-on: ${{ matrix.os }}
14+
15+
steps:
16+
- name: 'Checkout repository'
17+
uses: actions/checkout@v4
18+
19+
- name: 'Set up JDK 8'
20+
uses: actions/setup-java@v3
21+
with:
22+
java-version: '8'
23+
distribution: 'temurin'
24+
architecture: 'x64'
25+
26+
- name: 'Build project with Maven'
27+
run: mvn verify

0 commit comments

Comments
 (0)