fix(a2a): export package entrypoint #480
Workflow file for this run
This file contains hidden or 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 | |
| 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 |