-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into feat/txn-command
- Loading branch information
Showing
13 changed files
with
2,303 additions
and
42 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Ledger Emulator Tests | ||
|
||
on: | ||
push: | ||
branches: [main, release/**] | ||
pull_request: | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
emulator-tests: | ||
runs-on: ubuntu-latest | ||
env: | ||
CI_TESTS: true | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: stellar/actions/rust-cache@main | ||
- name: install libudev-dev | ||
run: | | ||
sudo apt install -y libudev-dev | ||
- run: | | ||
cargo test --manifest-path cmd/crates/stellar-ledger/Cargo.toml --features "emulator-tests" |
Oops, something went wrong.