Add security info file as required by Eclipse processes #32
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
# Workflow to build mqtt.paho.java library | |
name: Java CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# os: [ubuntu-latest, macOS-latest, windows-latest] | |
# java: [ 8.0.192, 8, 11.0.3, 17, 18-ea ] | |
os: [ubuntu-latest] | |
java: [ 8.0.192 ] | |
fail-fast: false | |
max-parallel: 4 | |
name: Build MQTT Paho Java on JDK ${{ matrix.java }}, ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK ${{ matrix.java }} ${{ matrix.os }} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
java-package: jdk | |
- name: Package with Maven skip tests | |
run: mvn -B package --file pom.xml -DskipTests | |