update rust to 1.82 pin it, also update envoy to 1.32 and python to 3.13

This commit is contained in:
Adil Hafeez 2024-11-08 11:06:54 -08:00
parent 88d0f99866
commit 552ff814f5
6 changed files with 20 additions and 20 deletions

View file

@ -18,13 +18,13 @@ jobs:
uses: actions/checkout@v4
- name: Setup | Rust
run: rustup toolchain install stable --profile minimal
run: rustup toolchain install 1.82 --profile minimal
- name: Setup | Install wasm toolchain
run: rustup target add wasm32-wasi
run: rustup target add wasm32-wasip1
- name: Build wasm module
run: cargo build --release --target=wasm32-wasi
run: cargo build --release --target=wasm32-wasip1
- name: Run unit tests
run: cargo test --lib