Skip to content

use 64bit API for stable memory #342

use 64bit API for stable memory

use 64bit API for stable memory #342

Workflow file for this run

name: Rust
on:
push:
branches:
- main
pull_request:
jobs:
rust:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache cargo build
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: cargo build
- name: Run tests
run: cargo test -- --test-threads=1
- name: fmt
run: cargo fmt -v -- --check
- name: lint
run: cargo clippy --tests -- -D clippy::all
- name: doc
run: cargo doc