Skip to content

Commit

Permalink
add webmvc-method-arg-resolver flow.
Browse files Browse the repository at this point in the history
  • Loading branch information
hantsy committed Sep 21, 2024
1 parent 180f640 commit 4e29066
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/webmvc-method-arg-resolver.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: webmvc-method-arg-resolver
on:
push:
paths:
- "webmvc-method-arg-resolver/**"
branches: [master]
pull_request:
paths:
- "webmvc-method-arg-resolver/**"
branches: [master]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: "21"
distribution: "zulu"
cache: "maven"
- name: Build with Maven
run: |
mvn -B -q clean verify --file webmvc-method-arg-resolver/pom.xml

0 comments on commit 4e29066

Please sign in to comment.