update to latest sdk #9
Workflow file for this run
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: "Check PR" | |
on: pull_request | |
concurrency: | |
group: pr-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
Check_Rust_SDK: | |
name: "Check Rust SDK" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install asdf dependencies | |
uses: asdf-vm/actions/install@v3 | |
- name: Cache Dependencies | |
uses: Swatinem/[email protected] | |
- name: Build Rust Package | |
working-directory: . | |
run: cargo build --locked --release | |
- name: Dry Run Publish Rust Package | |
working-directory: . | |
run: cargo publish --dry-run --no-verify |