mirror of
https://github.com/praktimarc/kst4contest.git
synced 2026-03-30 04:31:04 +02:00
Fix WT Compile issues and prepare auto release pipeline (#13)
* Fixup WinTest Error * Prepare CI/CD Auto Release Pipeline * Fix CI/CD Components not running * CI/CD Pre-Check n nighty and produce zip for more intutive User Design * fix Version * App Version Update. * More Similar Naming to old Convention
This commit is contained in:
28
.github/workflows/pr-compile-check.yml
vendored
Normal file
28
.github/workflows/pr-compile-check.yml
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
name: PR Compile Check
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
compile:
|
||||
name: Compile (Java 17)
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Java 17
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
distribution: temurin
|
||||
java-version: "17"
|
||||
|
||||
- name: Ensure mvnw is executable
|
||||
run: chmod +x mvnw
|
||||
|
||||
- name: Compile
|
||||
run: ./mvnw -B -DskipTests compile
|
||||
Reference in New Issue
Block a user