set version 0.5.0-dev #265
Workflow file for this run
This file contains 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 | |
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 --no-default-features | |
- name: Build the `wat` feature | |
run: cargo check --no-default-features --features wat | |
- name: Build the `wit` feature | |
run: cargo check --no-default-features --features wit | |
- name: Build the `registry` feature | |
run: cargo check --no-default-features --features registry | |
- name: Build all features | |
run: cargo check --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 |