Add spring-batch-notion
This commit is contained in:
34
.github/workflows/spring-batch-notion.yml
vendored
Normal file
34
.github/workflows/spring-batch-notion.yml
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
name: Spring Batch Notion
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
paths:
|
||||
- 'spring-batch-notion/**'
|
||||
push:
|
||||
paths:
|
||||
- 'spring-batch-notion/**'
|
||||
|
||||
defaults:
|
||||
run:
|
||||
working-directory: spring-batch-notion
|
||||
|
||||
env:
|
||||
MAVEN_ARGS: -B -V -ntp -e -Djansi.passthrough=true -Dstyle.color=always
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
|
||||
name: Build
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up Java
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
java-version: '21'
|
||||
distribution: 'temurin'
|
||||
cache: maven
|
||||
- name: Build with Maven
|
||||
run: ./mvnw $MAVEN_ARGS verify javadoc:javadoc
|
||||
Reference in New Issue
Block a user