Skip to content

Commit

Permalink
Merge branch 'develop' into db-integration-test
Browse files Browse the repository at this point in the history
  • Loading branch information
vikhyat187 authored Dec 19, 2023
2 parents a8dbcde + f04aa5f commit ce68b3e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions skill-tree /.github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI Build

on:
pull_request:
branches:
- ["develop","main"]
jobs:
build:
name: Maven Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Setup Java 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'

- name: Build with Maven
run: mvn verify --file skill-tree\ /pom.xml

0 comments on commit ce68b3e

Please sign in to comment.