Check-in [3b65f27fe6]
Logged in as anonymous
Overview
Comment:update workflow (minimize, fix a little)
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 3b65f27fe629c7181994e74b10febda597b9367f3930c160602ab506b2cfb9e7
User & Date: arcade on 2026-01-09 09:58:12.450
Other Links: manifest | tags
Context
2026-01-09
09:59
fix wrong comment check-in: 8f4dcf5e9d user: arcade tags: trunk
09:58
update workflow (minimize, fix a little) check-in: 3b65f27fe6 user: arcade tags: trunk
09:57
bump year, add data to Cargo.toml check-in: a2c4ae4717 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
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: dtolnay/rust-toolchain@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
|
<


<
<
<
<

|
|



<

<
>
|
<
<
|
<


>

|

>

|
1

2
3




4
5
6
7
8
9

10

11
12


13

14
15
16
17
18
19
20
21
22
name: rust-ci

on: push





jobs:
  rust-ci-run:
    name: Run rust-clippy analyzing and tests
    runs-on: ubuntu-latest
    permissions:
      contents: read

    steps:

      # SETUP
      - uses: actions/checkout@v6


      - uses: dtolnay/rust-toolchain@stable

      - uses: Swatinem/rust-cache@v2

      # TESTS
      - name: Run tests
        run: cargo test --all-targets --all-features --release

      # CLIPPY
      - name: Run rust-clippy
        run: cargo clippy --all-targets --all-features -- -D warnings