Feat: Adding procedure to verify user hand and allot points #11
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: Run Aze integration Tests on PR | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
name: Run Aze server integration test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Checkout miden-node repo | |
uses: actions/checkout@v3 | |
with: | |
repository: 'RizeLabs/miden-node' | |
path: 'miden-node' | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
profile: minimal | |
override: true | |
- name: Start miden node # start local miden node | |
run: | | |
cd miden-node | |
cargo install --features testing --path bin/node # install miden-node binary | |
cd bin/node | |
miden-node make-genesis --force | |
miden-node start node & | |
- name: Run tests | |
run: cargo test --release -- --nocapture | |