diff --git a/.github/workflows/webmvc-method-arg-resolver.yml b/.github/workflows/webmvc-method-arg-resolver.yml new file mode 100644 index 0000000..824c2fa --- /dev/null +++ b/.github/workflows/webmvc-method-arg-resolver.yml @@ -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 +