Skip to content

TON signing: include address, timestamp & hash #5880

TON signing: include address, timestamp & hash

TON signing: include address, timestamp & hash #5880

Workflow file for this run

name: CI - Unit Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
jobs:
unit_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Restore cargo cache
uses: Swatinem/rust-cache@v2
with:
shared-key: "ci-rust"
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.9
- name: Install just
uses: extractions/setup-just@v3
- name: Run tests
run: just test-all
integration_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Restore cargo cache
uses: Swatinem/rust-cache@v2
with:
shared-key: "ci-rust"
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.9
- name: Install just
uses: extractions/setup-just@v3
- name: Build all integration tests only
run: just build-integration-tests
- name: Check gemstone dependencies
run: |
cargo tree --package gemstone | grep -i reqwest && exit 1 || echo "✓ No reqwest dependencies found in gemstone"