wac-cli 0.10.0

A tool for encoding and decoding WebAssembly compositions.
Documentation
name: CI
on:
  push:
    branches:
      - main
    tags: ['[0-9]*']
  pull_request:
    branches:
      - main

jobs:
  test:
    name: Run tests
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest, macos-latest, windows-latest]
    steps:
    - uses: actions/checkout@v3
    - name: Install Rust
      run: |
        rustup update stable --no-self-update
        rustup default stable
      shell: bash
    - name: Run all tests
      run: cargo test --all

  check:
    name: Check feature combinations
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest, macos-latest, windows-latest]
    steps:
    - uses: actions/checkout@v3
    - name: Install Rust
      run: |
        rustup update stable --no-self-update
        rustup default stable
      shell: bash
    - name: Build without default features
      run: cargo check --workspace --no-default-features
    - name: Build the `wat` feature
      run: cargo check --workspace --no-default-features --features wat
    - name: Build the `wit` feature
      run: cargo check --workspace --no-default-features --features wit
    - name: Build the `registry` feature
      run: cargo check --workspace --no-default-features --features registry
    - name: Build the `serde` feature
      run: cargo check --workspace --no-default-features --features serde
    - name: Build all features
      run: cargo check --workspace --all-features

  rustfmt:
    name: Format source code
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3
    - name: Install Rust
      run: rustup update stable && rustup default stable && rustup component add rustfmt
    - name: Run `cargo fmt`
      run: cargo fmt -- --check