Skip to content

Update wasm tracing #636

Update wasm tracing

Update wasm tracing #636

Workflow file for this run

name: Code Quality Checks
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build-lint-test-audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Build with Test Utils
run: cargo build --verbose --features=test_utils
- name: Check
run: cargo check --verbose --features=test_utils
- name: Clippy
run: cargo clippy --all-targets --features=test_utils -- -D warnings