Skip to content

feat: update cargo lock #5

feat: update cargo lock

feat: update cargo lock #5

Workflow file for this run

name: Compiling
on: pull_request
jobs:
soroban-compilation:

Check failure on line 6 in .github/workflows/compile.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/compile.yaml

Invalid workflow file

You have an error in your yaml syntax on line 6
name: Soroban Compilation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.76.0
target: wasm32-unknown-unknown
override: true
- name: Add wasm32-unknown-unknown Target
run: rustup target add wasm32-unknown-unknown
- name: Cache build artifacts
uses: Swatinem/rust-cache@v2
with:
shared-key: "cache"
- name: Build wasm release
run: cargo wasm