Skip to content

fix(zed): restore canonical Apache-2.0 section 9 heading #7

fix(zed): restore canonical Apache-2.0 section 9 heading

fix(zed): restore canonical Apache-2.0 section 9 heading #7

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-D warnings"
jobs:
check:
name: fmt · clippy · test · wasm build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
targets: wasm32-wasip2
- uses: Swatinem/rust-cache@v2
- name: Format
run: cargo fmt --all --check
- name: Test (core)
run: cargo test -p schemalock-zed-core
- name: Clippy (wasm target)
run: cargo clippy --release --target wasm32-wasip2 -- -D warnings
- name: Build extension wasm
run: cargo build --release --target wasm32-wasip2