From 310688f419b8d9a4626f8f8db7254cef4cd7d00d Mon Sep 17 00:00:00 2001 From: talithafrsc Date: Thu, 24 Oct 2024 17:38:41 +0700 Subject: [PATCH] push CI --- .../workflows/ci.yml | 0 .github/workflows/maven-build.yml | 29 ------------------- 2 files changed, 29 deletions(-) rename github-actions.yml => .github/workflows/ci.yml (100%) delete mode 100644 .github/workflows/maven-build.yml diff --git a/github-actions.yml b/.github/workflows/ci.yml similarity index 100% rename from github-actions.yml rename to .github/workflows/ci.yml diff --git a/.github/workflows/maven-build.yml b/.github/workflows/maven-build.yml deleted file mode 100644 index 4718a6ce5..000000000 --- a/.github/workflows/maven-build.yml +++ /dev/null @@ -1,29 +0,0 @@ -# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time -# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven - -name: Java CI with Maven - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - build: - - runs-on: ubuntu-latest - strategy: - matrix: - java: [ '17' ] - - steps: - - uses: actions/checkout@v4 - - name: Set up JDK ${{matrix.java}} - uses: actions/setup-java@v4 - with: - java-version: ${{matrix.java}} - distribution: 'adopt' - cache: maven - - name: Build with Maven Wrapper - run: ./mvnw -B package