Skip to content

Commit f15d0fa

Browse files
Add legacy test
1 parent e05d08c commit f15d0fa

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/ci-workflow.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,17 @@ jobs:
2727
- name: Build Rust with Cargo
2828
run: cargo build --verbose
2929
- name: Test Rust with Cargo
30-
run: cargo test --verbose -- --nocapture
30+
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

Comments
 (0)