feat(tracing): Add tracing for understand particle processing #1846
Workflow file for this run
This file contains 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: "test" | |
on: | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
- ".github/**" | |
- "!.github/workflows/run-tests.yml" | |
- "!.github/workflows/tests.yml" | |
concurrency: | |
group: "${{ github.workflow }}-${{ github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
nox: | |
uses: ./.github/workflows/tests.yml | |
with: | |
ref: ${{ github.ref }} | |
test-retries: 0 | |
lints: | |
runs-on: builder | |
env: | |
RUSTFLAGS: "-D warnings --cfg tokio_unstable -C link-arg=-B/usr/local/bin/mold" | |
RUSTC_WRAPPER: "sccache" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Rust toolchain | |
uses: dsherret/rust-toolchain-file@v1 | |
- name: Setup cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
cache-directories: ~/.cache/sccache | |
shared-key: nox | |
save-if: false | |
- name: Setup sccache | |
uses: mozilla-actions/sccache-action@v0.0.3 | |
- name: Setup mold linker | |
uses: rui314/setup-mold@v1 | |
with: | |
make-default: false | |
- name: Run cargo check | |
run: cargo check | |
- name: Run cargo clippy | |
uses: giraffate/clippy-action@v1 | |
with: | |
reporter: github-pr-review | |
clippy_flags: -Z unstable-options --all | |
fail_on_error: true | |
- name: Run cargo fmt | |
uses: actions-rust-lang/rustfmt@v1 |