Skip to content

Commit

Permalink
feat(std): more commands (amber-lang#185)
Browse files Browse the repository at this point in the history
* feat(std): more command

* removed functions

* download

* Update main.ab

added is_root and is_command

* feat(download): improved fallback

* amber fix

* feat(test): is_command

* feat(test): create_symbolic_link

* feat(test): added 3 tests

* feat(test): added 2 tests

* fix(test): download

* feat: spin up a small web server for download() test

* fix: regenerate Cergo.lock

* feat(env): 3 new functions

* fix(amber): now should compile

* fix(amber): now should compile

* fix(amber): clean

* fix(test): removed write

* fix(test): maybe

* fix(test): wip

* fix(test): wip

* ci(cache): now will use CI cache, so it will be more fast between jobs

---------

Co-authored-by: b1ek <[email protected]>
  • Loading branch information
Mte90 and b1ek committed Jul 3, 2024
1 parent 48c3ed1 commit c9ecb26
Show file tree
Hide file tree
Showing 5 changed files with 473 additions and 30 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,13 @@ jobs:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Cache dependencies installed with cargo
uses: actions/cache@v3
with:
path: |
./target
~/.cargo
key: rust-${{ hashFiles('Cargo.lock') }}
restore-keys: rust-${{ hashFiles('Cargo.lock') }}
- name: Run all tests
run: cargo test --verbose
Loading

0 comments on commit c9ecb26

Please sign in to comment.