Skip to content

Update actions and bump to 1.0.4 #12

Update actions and bump to 1.0.4

Update actions and bump to 1.0.4 #12

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
strategy:
matrix:
image: ["ubuntu-latest", "macos-latest", "windows-latest"]
rust: ["stable"]
include:
- image: "ubuntu-latest"
rust: "beta"
- image: "ubuntu-latest"
rust: "nightly"
- image: "ubuntu-latest"
rust: "1.80.0"
runs-on: ${{matrix.image}}
steps:
- name: Install `rustup`
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal
- name: Install Rust channel
run: rustup toolchain install ${{matrix.rust}} && rustup default ${{matrix.rust}}
- uses: actions/checkout@v4
- name: Run tests
run: cargo test --verbose
wasi-test:
runs-on: ubuntu-latest
steps:
- name: Install `rustup`
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal
- name: Install Rust channel
run: rustup toolchain install stable && rustup default stable
- name: Install `cargo wasi`
run: cargo install cargo-wasi
- name: Install `wasmtime`
run: curl https://wasmtime.dev/install.sh -sSf | bash
- name: add `wasmtime` to PATH
run: echo $HOME/.wasmtime/bin >> $GITHUB_PATH
- uses: actions/checkout@v4
- name: Run `cargo wasi test`
run: cargo wasi test --verbose