update the account
template code to basic wallet example
#9
Workflow file for this run
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
name: CI | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '*.md' | |
pull_request: | |
paths-ignore: | |
- '*.md' | |
env: | |
ACTIONS_RUNNER_DEBUG: true | |
ACTIONS_STEP_DEBUG: true | |
jobs: | |
test_new_project_build: | |
# Create a new project from the template and build it | |
name: Test new project build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
- name: Install Miden cargo extension | |
uses: actions-rs/cargo@v1 | |
with: | |
command: install | |
args: --git https://github.com/0xPolygonMiden/compiler --branch main cargo-miden | |
- name: Run `cargo miden new` command | |
run: cargo miden new my_account_proj --template-path . | |
- name: Run `cargo miden build` command | |
run: cargo miden build --release | |
working-directory: my_account_proj |