Check-in [32b2d1d28d]
Logged in as anonymous
Overview
Comment:update clippy config
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 32b2d1d28d1281eee97497d46c2e6270110b7dadf53d1ffeaa8bd87d2c543c52
User & Date: arcade on 2026-01-06 08:53:30.875
Other Links: manifest | tags
Context
2026-01-06
08:53
bump check-in: 7690cb4cf8 user: arcade tags: trunk
08:53
update clippy config check-in: 32b2d1d28d user: arcade tags: trunk
2026-01-02
12:16
bump check-in: 699bd9270f user: arcade tags: trunk
Changes
1
2
3
4
5

6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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


<
|
|
>
|
|
<




















|


|
1
2

3
4
5
6
7

8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: rust-clippy analyze


on: push

# Make sure CI fails on all warnings, including Clippy lints
env:
  RUSTFLAGS: "-Dwarnings"


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-targets --all-features

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