rust-clippy.yml at [699bd9270f]
Logged in as anonymous

File .github/workflows/rust-clippy.yml artifact 521eb30b00 part of check-in 699bd9270f


name: rust-clippy analyze

on:
  push:
    branches: [ "master" ]
  pull_request:
    # The branches below must be a subset of the branches above
    branches: [ "master" ]

jobs:
  rust-clippy-test:
    name: Run rust-clippy analyzing
    runs-on: ubuntu-latest
    permissions:
      contents: read
      security-events: write
    steps:
      - name: Checkout code
        uses: actions/checkout@v6

      - name: Install Rust toolchain
        uses: hecrj/setup-rust-action@v2
        with:
          rust-version: stable

      - uses: Swatinem/rust-cache@v2

      - name: Run tests
        run: cargo test --all-features

      - name: Run rust-clippy
        run: cargo clippy --all-features