forked from ARK-Builders/ark-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git subrepo clone https://github.com/ARK-Builders/ARK-CLI ark-cli
subrepo: subdir: "ark-cli" merged: "f97f950" upstream: origin: "https://github.com/ARK-Builders/ARK-CLI" branch: "main" commit: "f97f950" git-subrepo: version: "0.4.6" origin: "https://github.com/Homebrew/brew" commit: "9bd03675f6"
- Loading branch information
1 parent
4856876
commit bea0dcb
Showing
23 changed files
with
5,229 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Build CLI tool | ||
|
||
on: [push] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
check: | ||
name: Build ARK-CLI | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install Rust | ||
uses: dtolnay/rust-toolchain@stable | ||
with: | ||
components: rustfmt, clippy | ||
|
||
- name: Check | ||
run: cargo check | ||
|
||
- name: Format | ||
run: | | ||
cargo fmt --all -- --check | ||
cargo clippy | ||
- name: Build Release | ||
run: cargo build --verbose --release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
target | ||
.ark | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
; DO NOT EDIT (unless you know what you are doing) | ||
; | ||
; This subdirectory is a git "subrepo", and this file is maintained by the | ||
; git-subrepo command. See https://github.com/ingydotnet/git-subrepo#readme | ||
; | ||
[subrepo] | ||
remote = https://github.com/ARK-Builders/ARK-CLI | ||
branch = main | ||
commit = f97f9506ee53f2a1ac60e341635bec8820049505 | ||
parent = 4856876e455ea8349b038e5d1f2ddffa907d9a2e | ||
method = rebase | ||
cmdver = 0.4.6 |
Oops, something went wrong.