Skip to content

fix: update test flow #2

fix: update test flow

fix: update test flow #2

Workflow file for this run

name: Python Tests
on:
push:
workflow_call:
jobs:
test:
runs-on: ubuntu-22.04
strategy:
matrix:
java: [ '8', '11', '17', '21' ]
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Setup java
uses: actions/[email protected]
with:
distribution: 'adopt'
java-version: ${{ matrix.java }}
cache: 'maven'
cache-dependency-path: ./pom.xml
- name: Install dependencies, Build and run Test with Maven
run: |
mvn -B clean verify