Skip to content

Workflow file for this run

name: childprocess-vertx-ext
on:
push:
branches:
- master
- '[0-9]+.[0-9x]+'
pull_request:
branches:
- master
- '[0-9]+.[0-9x]+'
schedule:
- cron: '* 4 * * *'
jobs:
Test:
name: Run tests
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
jdk: [17]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install JDK
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.jdk }}
distribution: temurin
- name: Run tests
run: mvn -q clean verify -B