Skip to content

fix: all cargo doc warnings #156

fix: all cargo doc warnings

fix: all cargo doc warnings #156

Workflow file for this run

name: wasm-interpreter-ci
on:
push:
branches-ignore:
- "gh-readonly-queue/**"
# i don't think we should run CI for examples
- "example/**"
pull_request:
merge_group:
jobs:
ci:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
env:
- RUSTFLAGS="-D warnings"

Check failure on line 19 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / wasm-interpreter-ci

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 19, Col: 7): A sequence was not expected
- RUSTDOCFLAGS="-D warnings"
steps:
- uses: actions/checkout@v4
- name: Format
run: cargo check
- name: Run clippy
# for CI we can treat errors as warnings
# for reference see: https://doc.rust-lang.org/clippy/usage.html
run: cargo clippy
- name: Build docs
run: cargo doc --document-private-items --verbose
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose