Use vertx builder when it comes building an instance with a tracer in… #1451
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: CI | |
on: | |
push: | |
branches: | |
- '[0-9]+.x' | |
pull_request: | |
branches: | |
- '[0-9]+.x' | |
schedule: | |
- cron: '0 4 * * *' | |
jobs: | |
Test: | |
name: Run tests | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
jdk: [8] | |
include: | |
- os: ubuntu-latest | |
jdk: 21 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: maven-java-${{ matrix.jdk }} | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install JDK | |
uses: joschi/setup-jdk@v2 | |
with: | |
java-version: ${{ matrix.jdk }} | |
- name: Run tests | |
run: mvn -q clean verify -B |