rust-githubaction-demo 0.1.7

This package is used for test publishing a crate with github actions
Documentation
1
2
3
4
5
6
7
use publish_crate_with_github_actions_demo::utils::add;

#[test]
fn feature() {
    let sum = add(1, 1);
    assert_eq!(sum, 2);
}