feat(connector): Integrate PAZE Wallet (#6030) #5360
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
name: CI-push | |
on: | |
push: | |
branches: | |
- main | |
# paths: | |
# - ".github/workflows/**" | |
# - "crates/**" | |
# - "examples/**" | |
# - "Cargo.lock" | |
# - "Cargo.toml" | |
merge_group: | |
types: | |
- checks_requested | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
formatting: | |
name: Check formatting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly | |
components: rustfmt | |
- name: Check formatting | |
shell: bash | |
run: cargo +nightly fmt --all --check | |
check-msrv: | |
name: Check compilation on MSRV toolchain | |
runs-on: ${{ matrix.runner }} | |
env: | |
RUSTFLAGS: "-D warnings" | |
strategy: | |
fail-fast: true | |
matrix: | |
runner: | |
- ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install mold linker | |
uses: rui314/setup-mold@v1 | |
if: ${{ runner.os == 'Linux' }} | |
with: | |
make-default: true | |
- name: Get rust version from Cargo.toml | |
shell: bash | |
run: | | |
rust_version=$(yq -oy '.workspace.package.rust-version' Cargo.toml) | |
echo "rust_version=${rust_version}" >> $GITHUB_ENV | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: "${{ env.rust_version }}" | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: Swatinem/[email protected] | |
with: | |
save-if: ${{ github.event_name == 'push' }} | |
- name: Install cargo-hack | |
uses: baptiste0928/[email protected] | |
with: | |
crate: cargo-hack | |
- name: Install just | |
uses: taiki-e/[email protected] | |
with: | |
tool: just | |
checksum: true | |
- name: Install jq | |
shell: bash | |
run: .github/scripts/install-jq.sh | |
- name: Cargo hack | |
if: ${{ github.event_name == 'push' }} | |
shell: bash | |
run: just ci_hack | |
- name: Cargo build release | |
if: ${{ github.event_name == 'merge_group' }} | |
shell: bash | |
run: cargo check --features "release" | |
# cargo-deny: | |
# name: Run cargo-deny | |
# runs-on: ubuntu-latest | |
# strategy: | |
# matrix: | |
# checks: | |
# - advisories | |
# - bans licenses sources | |
# # Prevent sudden announcement of a new advisory from failing CI | |
# continue-on-error: ${{ matrix.checks == 'advisories' }} | |
# steps: | |
# - name: Checkout repository | |
# uses: actions/checkout@v4 | |
# - name: Run cargo-deny | |
# uses: EmbarkStudios/[email protected] | |
# with: | |
# command: check ${{ matrix.checks }} | |
test: | |
name: Run tests on stable toolchain | |
runs-on: ${{ matrix.runner }} | |
env: | |
RUSTFLAGS: "-D warnings" | |
strategy: | |
fail-fast: true | |
matrix: | |
runner: | |
- ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install mold linker | |
uses: rui314/setup-mold@v1 | |
if: ${{ runner.os == 'Linux' }} | |
with: | |
make-default: true | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: stable 2 weeks ago | |
components: clippy | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install cargo-hack | |
uses: baptiste0928/[email protected] | |
with: | |
crate: cargo-hack | |
- name: Install just | |
uses: taiki-e/[email protected] | |
with: | |
tool: just | |
checksum: true | |
- name: Install jq | |
shell: bash | |
run: .github/scripts/install-jq.sh | |
# - name: Install cargo-nextest | |
# uses: baptiste0928/[email protected] | |
# with: | |
# crate: cargo-nextest | |
- uses: Swatinem/[email protected] | |
with: | |
save-if: ${{ github.event_name == 'push' }} | |
- name: Run clippy | |
shell: bash | |
run: just clippy | |
- name: Cargo hack | |
if: ${{ github.event_name == 'push' }} | |
shell: bash | |
run: just ci_hack | |
- name: Cargo build release | |
if: ${{ github.event_name == 'merge_group' }} | |
shell: bash | |
run: cargo check --features "release" | |
typos: | |
name: Spell check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Spell check | |
uses: crate-ci/typos@master | |
check-v2: | |
name: Check compilation for V2 features | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install mold linker | |
uses: rui314/setup-mold@v1 | |
if: ${{ runner.os == 'Linux' }} | |
with: | |
make-default: true | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: stable 2 weeks ago | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install rust cache | |
uses: Swatinem/[email protected] | |
- name: Run cargo check enabling only the release and v2 features | |
shell: bash | |
run: cargo check --no-default-features --features "release,v2" |