Skip to content

Commit

Permalink
- fix: protoco
Browse files Browse the repository at this point in the history
  • Loading branch information
agallardol committed Nov 11, 2024
1 parent d58f368 commit c133652
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
pull_request:
branches: [main]


concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
Expand All @@ -30,17 +29,20 @@ jobs:
key: build-cargo-${{ hashFiles('**/Cargo.lock') }}

- name: (Linux) Install build deps
if: ${{ matrix.arch == 'x86_64-unknown-linux-gnu' }}
run: |
sudo apt-get install -y protobuf-compiler
- name: build workspace
run: cargo build --workspace

- name: build workspace
run: cargo test -- --test-threads=1
- name: run ./run-main-cargo-tests.sh
run: ./run-main-cargo-tests.sh
env:
FROM_WALLET_MNEMONICS: ${{ secrets.FROM_WALLET_MNEMONICS }}
FROM_WALLET_PRIVATE_KEY: ${{ secrets.FROM_WALLET_PRIVATE_KEY }}

- name: run ./run-main-mirror-cargo-tests.sh
run: ./run-main-mirror-cargo-tests.sh
env:
IS_TESTING: 1
WELCOME_MESSAGE: false
FROM_WALLET_MNEMONICS: ${{ secrets.FROM_WALLET_MNEMONICS }}
FROM_WALLET_PRIVATE_KEY: ${{ secrets.FROM_WALLET_PRIVATE_KEY }}

0 comments on commit c133652

Please sign in to comment.