Skip to content

Support export metric data in WASM #4

Support export metric data in WASM

Support export metric data in WASM #4

Workflow file for this run

name: Clippy
on:
push:
pull_request:
env:
RUST_BACKTRACE: 1
jobs:
clippy:
name: Clippy rust
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
# make sure it runs on latest stable rust
toolchain: [stable]
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
steps:
- uses: actions/checkout/@v4
- name: Install Toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
components: clippy
- name: Show environment information
uses: ./.github/actions/show-env
- name: Install Protoc
uses: arduino/setup-protoc@v3
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- name: Run clippy
uses: ./.github/actions/clippy