Skip to content

feat: add CI builds + attestation #2

feat: add CI builds + attestation

feat: add CI builds + attestation #2

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: cargo build --release
working-directory: cloud-hello