From 44a79dc7242dadd214235bea083e99b7fd21b86c Mon Sep 17 00:00:00 2001 From: "akhil.tejas" <[AkhilTejas225@outlook.com]> Date: Thu, 26 Jun 2025 19:49:16 -0500 Subject: [PATCH] added changes --- ...luster.yml => deploy-and-test-cluster.txt} | 0 .../{gradle-build.yml => gradle-build.txt} | 0 .../{maven-build.yml => maven-build.txt} | 0 .github/workflows/spc_actions.yml | 26 +++++++++++++++++++ 4 files changed, 26 insertions(+) rename .github/workflows/{deploy-and-test-cluster.yml => deploy-and-test-cluster.txt} (100%) rename .github/workflows/{gradle-build.yml => gradle-build.txt} (100%) rename .github/workflows/{maven-build.yml => maven-build.txt} (100%) create mode 100644 .github/workflows/spc_actions.yml diff --git a/.github/workflows/deploy-and-test-cluster.yml b/.github/workflows/deploy-and-test-cluster.txt similarity index 100% rename from .github/workflows/deploy-and-test-cluster.yml rename to .github/workflows/deploy-and-test-cluster.txt diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.txt similarity index 100% rename from .github/workflows/gradle-build.yml rename to .github/workflows/gradle-build.txt diff --git a/.github/workflows/maven-build.yml b/.github/workflows/maven-build.txt similarity index 100% rename from .github/workflows/maven-build.yml rename to .github/workflows/maven-build.txt diff --git a/.github/workflows/spc_actions.yml b/.github/workflows/spc_actions.yml new file mode 100644 index 000000000..6e0900567 --- /dev/null +++ b/.github/workflows/spc_actions.yml @@ -0,0 +1,26 @@ +name: spc_git +run-name: ${{ github.actor }} +on: + pull_request: + branches: + - main + +jobs: + Job-1: + name: spc_test + runs-on: ubuntu-latest + steps: + - name: git clone + uses: actions/checkout@v4 + - name: mvn clean + run: mvn clean package + Job-2: + name: spc_test1 + # needs: Job-1 + runs-on: ubuntu-latest + steps: + - name: install_dotnet + run: sudo apt update && sudo apt install dotnet-sdk-8.0 -y + + + \ No newline at end of file