Skip to content

Commit

Permalink
chore: update workflow CI
Browse files Browse the repository at this point in the history
  • Loading branch information
helltractor committed Dec 9, 2024
1 parent bedd0c8 commit 2ab64a1
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 29 deletions.
29 changes: 0 additions & 29 deletions .github/workflows/java-build.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI Build

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
name: Maven Build
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: 'maven'

- name: Build with Maven
run: mvn clean install

0 comments on commit 2ab64a1

Please sign in to comment.