Remove order Id b
and Seller order ID a
from TradeEvent
#137
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
on: push | |
name: Clippy check | |
jobs: | |
clippy_check: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
rust_channel: | |
- stable | |
- nightly | |
steps: | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: clippy | |
- run: rustup --version | |
- uses: actions/checkout@v4 | |
- run: rustup toolchain add --profile=minimal ${{ matrix.rust_channel }} | |
- name: Cargo cache | |
uses: swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: true | |
- name: Install SARIF tools | |
run: cargo install clippy-sarif sarif-fmt | |
- name: Run clippy | |
run: > | |
cargo clippy --all-features --all --message-format=json -- -D warnings | |
| clippy-sarif | |
| tee clippy-results.sarif | |
| sarif-fmt | |
continue-on-error: true | |
- name: Upload analysis results to GitHub | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: clippy-results.sarif | |
wait-for-processing: true |