Skip to content

initial commit

initial commit #2

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Enable Corepack
run: corepack enable
- name: Install Rust toolchain
run: |
rustup toolchain install stable --profile minimal --component clippy
rustup default stable
- name: Install dependencies
run: vp install
- name: Run workspace CI
run: vp run ci