Skip to content

test: i32.popcnt test case #55

test: i32.popcnt test case

test: i32.popcnt test case #55

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 }}
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 -- -Dwarnings
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose