Skip to content

Commit

Permalink
git subrepo clone https://github.com/ARK-Builders/ARK-CLI ark-cli
Browse files Browse the repository at this point in the history
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
tareknaser committed Apr 4, 2024
1 parent 4856876 commit bea0dcb
Show file tree
Hide file tree
Showing 23 changed files with 5,229 additions and 0 deletions.
30 changes: 30 additions & 0 deletions ark-cli/.github/workflows/rust.yml
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
3 changes: 3 additions & 0 deletions ark-cli/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
target
.ark
.vscode
12 changes: 12 additions & 0 deletions ark-cli/.gitrepo
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
Loading

0 comments on commit bea0dcb

Please sign in to comment.