Skip to content

print update

print update #12

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: build
on:
workflow_dispatch: # Allow running the workflow manually from the GitHub UI
push:
branches:
- 'main' # Run the workflow when pushing to the main branch
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup `rust`
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Setup `wasm`
run: rustup target add wasm32-wasi
- name: Setup `spin`
uses: fermyon/actions/spin/setup@v1
- name: Run `spin version`
run: "spin --version"
- name: Run `spin build`
run: "spin build"