chore(deps): update dependency org.apache.tomcat:tomcat to v11 #1168
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: async | |
on: | |
push: | |
paths: | |
- "async/**" | |
branches: | |
- master | |
pull_request: | |
paths: | |
- "async/**" | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "corretto" | |
java-version: 21 | |
- name: Cache Maven packages | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Build with Maven | |
run: mvn -B -q clean package --file async/pom.xml | |
- name: Unit Tests | |
run: mvn -B -q clean test --file async/pom.xml -Put | |
- name: Start up PostgreSQL in Docker | |
run: | | |
docker compose up -d postgres | |
sleep 5 | |
docker ps -a | |
- name: Integration Tests | |
run: mvn -B -q clean verify --file async/pom.xml -Pit-jetty |