Skip to content

Commit

Permalink
ci: add ci.yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
gm112 committed Sep 24, 2024
1 parent 0ef3b19 commit ce39fe6
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [17]
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17 for x64
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
architecture: x64
cache: maven
- name: Build with Maven
run: mvn clean compile package -Dmaven.test.skip=true

0 comments on commit ce39fe6

Please sign in to comment.