Skip to content

feat: add CI builds + attestation #4

feat: add CI builds + attestation

feat: add CI builds + attestation #4

Workflow file for this run

name: cloud-hello
on:
pull_request:
merge_group:
workflow_dispatch:
push:
branches:
- main
tags:
- cloud-hello-v*
paths:
- 'cloud-hello/**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: cargo clippy --no-deps
working-directory: cloud-hello
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
rustup add target wasm32-wasi
cargo build --target wasm32-wasi
working-directory: cloud-hello