[Rust] Fix function/method discovery from harness #482
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: JUnit-Frontends | |
on: | |
pull_request: | |
paths: | |
- 'frontends/**' | |
- '.github/workflows/jvm-unit-test.yml' | |
permissions: read-all | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: JUnit-Frontends | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v3.1.0 | |
- name: Set up OpenJDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '11' | |
- name: Test Maven Build | |
run: cd frontends/java && mvn --batch-mode -DskipTests clean package | |
- name: Unit Test | |
run: cd frontends/java && mvn --batch-mode test |