Skip to content

Commit

Permalink
Merge pull request #34 from ADORSYS-GIS/Koufan-De-King-patch-1
Browse files Browse the repository at this point in the history
Created basic workflow develop.yaml
  • Loading branch information
Koufan-De-King authored Oct 18, 2024
2 parents 5bb28b4 + 508d595 commit 65a1f2e
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/develop.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# 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://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: Java CI with Maven

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: cd online-banking-service && mvn clean install

#Add pmd check

0 comments on commit 65a1f2e

Please sign in to comment.