Check-in [2fc1e49ea5]
Logged in as anonymous
Overview
Comment:simplify workflow
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 2fc1e49ea5c97a4c786cf1ded0183eeaa2e64c479abde4f87e4738c221daaa00
User & Date: arcade on 2026-01-12 10:11:49.127
Other Links: manifest | tags
Context
2026-01-12
10:15
switch from MarkDown to Html, validate text as HTML before sending, count header size differently, also bump license while here check-in: 0f47e23e21 user: arcade tags: trunk
10:11
simplify workflow check-in: 2fc1e49ea5 user: arcade tags: trunk
2026-01-07
07:50
bump, update workflow check-in: 4054f8ea66 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