actions-toolkit-sys 0.3.1

Raw bindings to the GitHub actions toolkit API for projects using wasm-bindgen.
Documentation
1
2
3
4
5
6
7
8
9
10
use actions_toolkit_sys::exec;
use wasm_bindgen_test::*;

#[wasm_bindgen_test]
fn exec_callable() {
    let command = &"command".into();
    let args = Default::default();
    let options = Default::default();
    exec::exec(command, args, options);
}