Skip to content

Commit

Permalink
Update build_and_tests_reusable.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
radumarias committed Aug 18, 2024
1 parent 977638d commit 7b1fa26
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build_and_tests_reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,19 +50,23 @@ jobs:
- name: java-bridge build
run: |
cd java bridge
cargo build --release --all --all-features --target x86_64-unknown-linux-gnu
cargo build --all-targets --all-features --target x86_64-unknown-linux-gnu
cargo build --release --all-targets --all-features --target x86_64-unknown-linux-gnu
- name: java-bridge fmt check
run: |
cd java bridge
cargo fmt --all -- --check
- name: check
- name: java-bridge check
run: |
cd java bridge
cargo check --all --target x86_64-unknown-linux-gnu
- name: tests
- name: java-bridge tests
run: |
cd java bridge
cargo test --release --all --all-features --target x86_64-unknown-linux-gnu
- name: java-bridge doc
run: cargo doc --workspace --all-features --no-deps --target x86_64-unknown-linux-gnu

0 comments on commit 7b1fa26

Please sign in to comment.