build(deps): bump cachix/install-nix-action from 26 to 27 #1301
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: 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 |