chore: more verbose build and check command

This commit is contained in:
Reinaldy Rafli 2021-11-14 16:31:26 +07:00
parent bbc91d22a3
commit 8a1dbcdcdd
No known key found for this signature in database
GPG Key ID: CFDB9400255D8CB6
2 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@ jobs:
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Check - name: Check
run: cargo check run: cargo check --all-targets --verbose
- name: Build - name: Build
run: cargo build run: cargo build --all-targets --verbose --release

View File

@ -25,8 +25,8 @@ Yes, you'll need to build from source.
1. Clone this repository. 1. Clone this repository.
2. Make sure to have Rust in your system. At this point of time, I have v1.54.0. 2. Make sure to have Rust in your system. At this point of time, I have v1.54.0.
3. Run `cargo build`. 3. Run `cargo build --all-targets --release`.
4. Run `sudo cp -v target/debug/add-editorconfig /usr/local/bin`. 4. Run `sudo cp -v target/release/add-editorconfig /usr/local/bin`.
If you're not running in Linux, try to check how to move file on your own. If you're not running in Linux, try to check how to move file on your own.
5. Check it via `add-editorconfig version`. 5. Check it via `add-editorconfig version`.