feat: impl multi_msg element parse #2
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: Clippy Check | |
on: [push, pull_request] | |
env: | |
RUSTFLAGS: "-Dwarnings" | |
jobs: | |
clippy-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Clippy | |
run: | | |
sudo apt-get update && sudo apt-get install protobuf-compiler | |
rustup toolchain install nightly | |
rustup component add --toolchain nightly clippy | |
cargo +nightly clippy --all-targets --all-features |