Skip to content

docs: Update CHANGELOG for v1.0.0-a1 alpha release #2

docs: Update CHANGELOG for v1.0.0-a1 alpha release

docs: Update CHANGELOG for v1.0.0-a1 alpha release #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
name: Lint & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: wasm32-wasip1
components: rustfmt, clippy
- name: Cache cargo
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Format check
run: cargo fmt --check
- name: Clippy (WASM target)
run: cargo clippy --target wasm32-wasip1 -- -D warnings
- name: Unit tests (host target)
run: cargo test --target x86_64-unknown-linux-gnu
- name: Build WASM component
run: cargo build --release --target wasm32-wasip1
- name: Upload plugin artifact
uses: actions/upload-artifact@v4
with:
name: plugin-wasm
path: target/wasm32-wasip1/release/unity_format_plugin.wasm