Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Event listeners but still facing async issues & Removed redundant cod… #12

Event listeners but still facing async issues & Removed redundant cod…

Event listeners but still facing async issues & Removed redundant cod… #12

Workflow file for this run

name: Java CI with Maven
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
packages: write
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
java: [21]
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
timeout-minutes: 30
- name: Upload JAR
uses: actions/upload-artifact@v4
with:
name: Package-JDK${{ matrix.java }}-${{ matrix.os }}
path: target/*.jar