Add long processing test #154
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 Hyperfoil Image build for pull requests | |
on: | |
pull_request: | |
branches: | |
- "main" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup java | |
uses: actions/setup-java@v2 | |
with: | |
cache: 'maven' | |
java-version: 17 | |
distribution: 'temurin' # Eclipse Temurin, the new home for AdoptOpenJDK | |
- name: Build the Hyperfoil Receiver image | |
run: cd vertx-receiver && mvn clean install |