Skip to content

build(deps): bump tokio from 1.37.0 to 1.38.0 #1313

build(deps): bump tokio from 1.37.0 to 1.38.0

build(deps): bump tokio from 1.37.0 to 1.38.0 #1313

Workflow file for this run

name: Test
on: [ push, pull_request ]
jobs:
native:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
run: rustup show
- name: cargo test
run: cargo test --workspace --all-features
wasi:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
run: rustup show
# Put this back when Enarx is able to receive TCP configuation from the command line.
#- name: Download enarx
# run: curl -sLO https://github.com/enarx/enarx/releases/download/v0.6.4/enarx-0.6.4-1_amd64.deb
#- name: Install enarx
# run: sudo dpkg -i enarx-0.6.4-1_amd64.deb
- name: Download Wasmtime
run: cargo install wasmtime-cli
- name: Check wasmtime version
run: wasmtime --version
- name: cargo test
run: cargo test --workspace --all-features --target=wasm32-wasi