Check-in [b54bc87df8]
Logged in as anonymous
Overview
Comment:one more workflow fix
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: b54bc87df87d8a10b78b712230a1f8a6a524726582e1486c27eae3b9ada8d87f
User & Date: arcade on 2026-01-02 12:39:44.901
Other Links: manifest | tags
Context
2026-01-07
07:50
bump, update workflow check-in: 4054f8ea66 user: arcade tags: trunk
2026-01-02
12:39
one more workflow fix check-in: b54bc87df8 user: arcade tags: trunk
10:39
simplify workflow, add cache check-in: 674d81235e 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@v1
        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@v1
        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