Skip to content

Bump github.com/webx-top/com from 1.3.19 to 1.3.20 #1130

Bump github.com/webx-top/com from 1.3.19 to 1.3.20

Bump github.com/webx-top/com from 1.3.19 to 1.3.20 #1130

Workflow file for this run

name: Java CI with Maven
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 19
uses: actions/setup-java@v3
with:
java-version: "21"
distribution: "temurin"
cache: maven
- name: compile with Maven
run: mvn compile --file pom.xml
- name: test with Maven
run: mvn test --file pom.xml
- name: package with maven
run: mvn package -DskipTests