Replace app #109
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: Tests | |
on: [push] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
java: [ 17 ] | |
kubernetes: | |
- 'v1.24.17' | |
- 'v1.25.15' | |
- 'v1.26.14' | |
- 'v1.27.11' | |
- 'v1.28.7' | |
- 'v1.29.2' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
#- name: Cache Maven packages | |
#uses: actions/cache@v4 | |
#with: | |
#path: ~/.m2 | |
#key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
#restore-keys: ${{ runner.os }}-m2 | |
- name: Setup Minikube | |
uses: manusa/[email protected] | |
with: | |
minikube version: 'v1.32.0' | |
kubernetes version: ${{ matrix.kubernetes }} | |
github token: ${{ secrets.GITHUB_TOKEN }} | |
driver: docker | |
- name: Pull images | |
run: | | |
minikube image pull openanalytics/shinyproxy-integration-test-app | |
minikube image pull curlimages/curl:latest | |
- name: Build with Maven | |
run: mvn -B -U clean install -DskipTests | |
# - name: Setup tmate session | |
# uses: mxschmitt/action-tmate@v3 | |
# with: | |
# detached: true | |
- name: Run Tests | |
run: mvn -B test | |
# dependency: | |
# runs-on: ubuntu-latest | |
# | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - name: Run Dependency Check | |
# run: mvn -Powasp-dependency-check verify -DskipTests | |
# - name: Archive code coverage results | |
# uses: actions/upload-artifact@v2 | |
# with: | |
# name: dependency-check-report | |
# path: target/dependency-check-report.html | |
# |