feature(parallized deploy): allow configuration of the deployer to run tasks in parallel (per leaf node) #50
Workflow file for this run
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: | |
pull_request: | |
env: | |
MAVEN: ./mvnw | |
jobs: | |
maven-build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java-version: | |
- 11 | |
- 17 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v2 | |
with: | |
distribution: 'zulu' | |
java-version: ${{ matrix.java-version }} | |
cache: 'maven' | |
- name: Maven build | |
run: | | |
$MAVEN clean install -B |