feat: update pom.xml #1
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: 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: Run tests | |
run: java tests/HelloWorldApp.java |