We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e05d08c commit f15d0faCopy full SHA for f15d0fa
.github/workflows/ci-workflow.yml
@@ -27,4 +27,17 @@ jobs:
27
- name: Build Rust with Cargo
28
run: cargo build --verbose
29
- name: Test Rust with Cargo
30
- run: cargo test --verbose -- --nocapture
+ run: cargo test --verbose -- --nocapture
31
+
32
+ test-legacy:
33
+ runs-on: ubuntu-latest
34
35
+ steps:
36
+ - uses: actions/checkout@v4
37
+ - name: Set up JDK 8
38
+ uses: actions/setup-java@v4
39
+ with:
40
+ java-version: '8'
41
+ distribution: 'temurin'
42
+ - name: Test Rust with Cargo
43
+ run: JAVAM_HOME="" cargo test --features=legacy-java-compat --verbose -- --nocapture
0 commit comments