Skip to content

[ELYEE-51] Upgrade the Jakarta Servlet API to 6.1.0 #56

[ELYEE-51] Upgrade the Jakarta Servlet API to 6.1.0

[ELYEE-51] Upgrade the Jakarta Servlet API to 6.1.0 #56

Workflow file for this run

name: Pull Request CI
on:
workflow_dispatch:
pull_request:
branches:
- 3.x
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
java: ['21']
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Version Info
run: mvn -version
- name: Build with Maven
run: mvn -B verify --file pom.xml