chore: deprecate substrate-api-sidecar in favor of polkadot-rest-api … #2662
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: calc | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: Cargo test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v6 | |
| - name: Install Rust stable toolchain | |
| uses: actions-rs/toolchain@v1.0.7 | |
| with: | |
| profile: minimal | |
| toolchain: stable | |
| - name: Rust Cache | |
| uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1 | |
| - name: Cargo test | |
| uses: actions-rs/cargo@v1.0.3 | |
| with: | |
| command: test | |
| args: --manifest-path=calc/Cargo.toml |