Skip to content

Commit

Permalink
Merge pull request #164 from 0xPolygonMiden/greenhat/i163-cargo-ext-f…
Browse files Browse the repository at this point in the history
…or-alpha

[4/x] Update cargo extension to support Miden accounts (alpha)
  • Loading branch information
bitwalker authored May 1, 2024
2 parents ef7c4b3 + 0c29c48 commit 4f842b1
Show file tree
Hide file tree
Showing 6 changed files with 184 additions and 103 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,29 @@ jobs:
with:
command: make
args: test

cargo_miden_test_clean_env:
# Run cargo-miden test in the clean env to simulate user's first run.
# To test the installation of the required dependencies (e.g. rust-src, wasm target, etc.)
name: cargo-miden tests
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.CARGO_MAKE_TOOLCHAIN }}
override: true
- name: Cache Cargo
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ github.workflow }}-${{ github.job }}-toolchain-${{ env.CARGO_MAKE_TOOLCHAIN }}
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
args: -p cargo-miden --test integration
Loading

0 comments on commit 4f842b1

Please sign in to comment.