Skip to content

Upgrade Pulsar client (3.2.2) and fix JMS priority on consumer side using Pulsar 3.x #401

Upgrade Pulsar client (3.2.2) and fix JMS priority on consumer side using Pulsar 3.x

Upgrade Pulsar client (3.2.2) and fix JMS priority on consumer side using Pulsar 3.x #401

Workflow file for this run

name: Build and test
on:
push:
branches:
- master
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'temurin'
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build and test
run: mvn -B clean javadoc:javadoc verify