diff --git a/.github/workflows/Deployment.yml b/.github/workflows/Deployment.yml new file mode 100644 index 0000000..e1cb4b3 --- /dev/null +++ b/.github/workflows/Deployment.yml @@ -0,0 +1,30 @@ +name : Run my spring boot application +on: + push: + branches: + - feature_Branch + pull_request: + branches: + - master + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: checkout code + uses: actions/checkout@v4 + - name: set JDK version + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '17' + - name: Build and package + run: mvn clean install + + + + + + + diff --git a/simple-springboot-app/workspace.code-workspace b/simple-springboot-app/workspace.code-workspace new file mode 100644 index 0000000..d60dc64 --- /dev/null +++ b/simple-springboot-app/workspace.code-workspace @@ -0,0 +1,3 @@ +{ + "folders": [] +} \ No newline at end of file