Skip to content

Commit

Permalink
creates pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadileepkolli committed May 12, 2023
1 parent 157ef65 commit 0f726d6
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/spring-boot-kafka-avro-consumer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: spring-boot-kafka-avro-consumer

on:
push:
paths:
- "kafka-avro/spring-boot-kafka-avro-consumer/**"
branches: [ master ]
pull_request:
paths:
- "kafka-avro/spring-boot-kafka-avro-consumer/**"
types:
- opened
- synchronize
- reopened

jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: "kafka-avro/spring-boot-kafka-avro-consumer"
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up JDK
uses: actions/[email protected]
with:
java-version: '17'
distribution: 'microsoft'
cache: 'maven'
- name: Build with Maven
run: ./mvnw -B clean verify --file pom.xml

0 comments on commit 0f726d6

Please sign in to comment.