Add end-to-end testing workflow #34
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
# Runs testing related jobs. | |
name: test | |
on: | |
push: | |
branches: [main, next] | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
unit-and-integration: | |
name: unit and integration tests stable on ubuntu-latest | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
override: true | |
- name: Install cargo make | |
run: cargo install cargo-make | |
- name: cargo make - test | |
run: cargo make test | |
end-to-end: | |
name: end-to-end tests stable on ubuntu-latest | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
override: true | |
- name: Install cargo make | |
run: cargo install cargo-make | |
- name: cargo make - docker-build-node | |
run: cargo make docker-build-node | |
- name: cargo make - docker-run-node | |
run: cargo make docker-run-node | |
- name: cargo install - miden-client | |
run: cargo install miden-client --features concurrent,testing | |
- name: cargo make - test-end-to-end | |
run: cargo make test-end-to-end |