Skip to content

fix(a2a): export package entrypoint #480

fix(a2a): export package entrypoint

fix(a2a): export package entrypoint #480

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
workflow_dispatch:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: Lint, Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
with:
build: 'true'
- run: npm run local:parity
- run: npx turbo lint
- run: npx turbo test
env:
DO_NOT_TRACK: '1'
rust-sdk:
name: Rust SDK
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Build
run: cargo build --manifest-path packages/sdk-rust/Cargo.toml
- name: Test
run: cargo test --manifest-path packages/sdk-rust/Cargo.toml
- name: Clippy
run: cargo clippy --manifest-path packages/sdk-rust/Cargo.toml -- -D warnings