Add missing toml description attributes #624
Workflow file for this run
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: Rust | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Add rustfmt and clippy | |
| run: rustup component add rustfmt clippy | |
| - name: Install node dependencies | |
| run: yarn | |
| - name: Expand liquid | |
| run: CI=1 yarn expand-liquid rust | |
| - name: Run cargo fmt | |
| run: cargo fmt --check | |
| - name: Run clippy | |
| run: cargo clippy -- -D warnings | |
| - name: Run tests | |
| run: cargo test | |
| - name: Add wasm32-wasip1 target | |
| run: rustup target add wasm32-wasip1 | |
| - name: Build with wasm32-wasip1 target | |
| run: cargo build --release --target wasm32-wasip1 |