Add first spin-test
based tests
#60
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Test | |
on: | |
pull_request: | |
branches: [main] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install latest Rust stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
default: true | |
components: clippy, rustfmt | |
- name: "Install Wasm Rust target" | |
run: rustup target add wasm32-wasi | |
- name: "Install spin-test" | |
run: | | |
curl -fsSL https://developer.fermyon.com/downloads/install.sh | bash | |
sudo mv spin /usr/local/bin/ | |
spin plugin install -u https://github.com/fermyon/spin-test/releases/download/canary/spin-test.json --yes | |
- name: Make | |
run: | | |
make | |
make spin-test | |
env: | |
RUST_LOG: spin=trace |