Skip to content

Commit

Permalink
run tests just on this branch for now
Browse files Browse the repository at this point in the history
  • Loading branch information
elizabethengelman committed Jul 30, 2024
1 parent 1820100 commit 2cbaeb3
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/temp-ledger-emulator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Temporary Ledger Emulator Tests
on:
push:
branches:
- AhaLabs:fix/troubleshooting-emulator-tests
pull_request_target:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref_protected == 'true' && github.sha || github.ref }}
cancel-in-progress: true

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" -- --nocapture

0 comments on commit 2cbaeb3

Please sign in to comment.