actions_toolkit_sys/
lib.rs

1//! Raw bindings to the GitHub actions toolkit API for projects using wasm-bindgen.
2
3#![deny(clippy::all)]
4#![deny(missing_docs)]
5
6/// Core functions for setting results, logging, registering secrets and exporting variables.
7pub mod core;
8/// Execute your tools on the command line in a cross-platform way.
9pub mod exec;
10/// An Octokit client hydrated with the context of the current action.
11pub mod github;
12/// Core functions for CLI filesystem scenarios.
13pub mod io;
14/// Functions necessary for downloading and caching tools.
15pub mod tool_cache;