docs: Update CHANGELOG for v1.0.0-a1 alpha release #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |