Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jniltinho/check-actions
Check Actions and on Github API
https://github.com/jniltinho/check-actions
Last synced: 11 days ago
JSON representation
Check Actions and on Github API
- Host: GitHub
- URL: https://github.com/jniltinho/check-actions
- Owner: jniltinho
- License: mit
- Created: 2022-04-29T01:00:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-05-02T21:54:45.000Z (over 2 years ago)
- Last Synced: 2024-08-01T22:57:57.782Z (3 months ago)
- Language: Rust
- Size: 26.4 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# check-actions
Check Actions and on Github API# Install Rust on Linux
```bash
sudo apt-get update
sudo apt-get install curl git gcc xz-utils
cd $HOME
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
echo 'export PATH="$HOME/.cargo/bin:$PATH"' >> $HOME/.profile
source $HOME/.profile
```## Run check-actions
```bash
git clone https://github.com/jniltinho/check-actions.git
cd check-actions
cargo install cargo-get
make build
target/release/check-actions --set-username=jniltinho
target/release/check-actions -h
target/release/check-actions -V
```## Run UPX on Rust binary
```bash
curl -LO https://github.com/upx/upx/releases/download/v3.96/upx-3.96-amd64_linux.tar.xz
tar -xf upx-3.96-amd64_linux.tar.xz
cp upx-3.96-amd64_linux/upx /usr/local/bin/
rm -rf upx-3.96-*
ls -sh target/release/check-actions
upx --best --lzma target/release/check-actions
ls -sh target/release/check-actions
target/release/check-actions --help
```## Links
* https://tech.fpcomplete.com/rust/command-line-parsing-clap
* https://www.rust-lang.org/tools/install
* https://crates.io/crates/cmd_lib
* https://github.com/rust-shell-script/rust_cmd_lib
* https://github.com/rust-embedded/cross