Add Token and amount to withdrawal request ids #145
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
# .github/workflows/workflow_gnu.yaml | |
name: Rust CI - GNU | |
on: | |
push: | |
branches: [ "listener-refined", "symbotic-bindings" ] | |
pull_request: | |
branches: [ "listener-refined", "symbotic-bindings" ] | |
jobs: | |
check: | |
name: Check (GNU) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Cache Cargo registry | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cargo/registry | |
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
${{ runner.os }}-cargo-registry- | |
- name: Cache Cargo git index | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cargo/git | |
key: ${{ runner.os }}-cargo-git-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
${{ runner.os }}-cargo-git- | |
- name: Cache Cargo build | |
uses: actions/cache@v3 | |
with: | |
path: target | |
key: ${{ runner.os }}-cargo-build-gnu-${{ hashFiles('**/Cargo.lock') }}-v2 | |
restore-keys: | | |
${{ runner.os }}-cargo-build-gnu- | |
${{ runner.os }}-cargo-build- | |
- name: Remove .cargo/config.toml if exists | |
run: rm -f .cargo/config.toml | |
- name: Update dependencies | |
run: cargo update | |
test: | |
name: Test Suite (GNU) | |
runs-on: ubuntu-latest | |
needs: check | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Cache Cargo registry | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cargo/registry | |
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
${{ runner.os }}-cargo-registry- | |
- name: Cache Cargo git index | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cargo/git | |
key: ${{ runner.os }}-cargo-git-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
${{ runner.os }}-cargo-git- | |
- name: Cache Cargo build | |
uses: actions/cache@v3 | |
with: | |
path: target | |
key: ${{ runner.os }}-cargo-build-gnu-${{ hashFiles('**/Cargo.lock') }}-v2 | |
restore-keys: | | |
${{ runner.os }}-cargo-build-gnu- | |
${{ runner.os }}-cargo-build- | |
- name: Remove .cargo/config.toml if exists | |
run: rm -f .cargo/config.toml | |
- name: Update dependencies | |
run: cargo update | |
- name: Verify Installed Targets | |
run: rustup target list --installed | |
- name: Run cargo test | |
env: | |
RUST_BACKTRACE: 1 | |
run: cargo test --target x86_64-unknown-linux-gnu |