Skip to content

build(deps): bump serde_json from 1.0.96 to 1.0.104 in /server #95

build(deps): bump serde_json from 1.0.96 to 1.0.104 in /server

build(deps): bump serde_json from 1.0.96 to 1.0.104 in /server #95

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# rust-clippy is a tool that runs a bunch of lints to catch common
# mistakes in your Rust code and help improve your Rust code.
# More details at https://github.com/rust-lang/rust-clippy
# and https://rust-lang.github.io/rust-clippy/
name: rust-clippy analyze
on:
push:
branches: [ "master" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master" ]
schedule:
- cron: '23 5 * * 6'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-clipy
cancel-in-progress: true
jobs:
rust-clippy-analyze:
name: Run rust-clippy analyzing
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install required cargo
run: cargo install clippy-sarif sarif-fmt
- name: Install dependencies
run: sudo apt-get install libasound2-dev libudev-dev -y
- name: Run rust-clippy (/server)
run:
cargo clippy
--all-features
--manifest-path=server/Cargo.toml
--message-format=json | clippy-sarif | tee rust-clippy-results-server.sarif | sarif-fmt
continue-on-error: true
- name: Run rust-clippy (/client)
run:
cargo clippy
--all-features
--manifest-path=client/Cargo.toml
--message-format=json | clippy-sarif | tee rust-clippy-results-client.sarif | sarif-fmt
continue-on-error: true
- name: Run rust-clippy (/protocol)
run:
cargo clippy
--all-features
--manifest-path=protocol/Cargo.toml
--message-format=json | clippy-sarif | tee rust-clippy-results-protocol.sarif | sarif-fmt
continue-on-error: true
- name: Upload Server analysis results to GitHub
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: rust-clippy-results-server.sarif
category: clippy-server
wait-for-processing: true
- name: Upload Client analysis results to GitHub
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: rust-clippy-results-client.sarif
category: clippy-client
wait-for-processing: true
- name: Upload Protocol analysis results to GitHub
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: rust-clippy-results-protocol.sarif
category: clippy-protocol
wait-for-processing: true