Skip to content

reworked string handling and added more docs. #17

reworked string handling and added more docs.

reworked string handling and added more docs. #17

Workflow file for this run

name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin' # See 'Supported distributions' for available options
java-version: '8'
- name: Build
run: cargo build --verbose --features loadjvm,asserts
- name: Run tests
run: cargo test --verbose --release --features loadjvm,asserts