Check-in [4448c56dd2]
Logged in as anonymous
Overview
Comment:add action for pull requests, ass sccache
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 4448c56dd2ea223a9b30bc1f2750afdaaafce5120172f3d7299bc3ad8650cb11
User & Date: arcade on 2026-01-12 13:39:19.575
Other Links: manifest | tags
Context
2026-01-12
13:41
minor typos, add back tests, change formatting a lot check-in: c996f5c871 user: arcade tags: trunk
13:39
add action for pull requests, ass sccache check-in: 4448c56dd2 user: arcade tags: trunk
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
Changes
1

2




3
4
5
6
7
8
9
10
11
12
13
14

15
16
17
18

19
20
21
22
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

+
-
+
+
+
+












+



-
+




name: rust-ci
on: [ push, pull_request]
on: push

env:
  SCCACHE_GHA_ENABLED: "true"
  RUSTC_WRAPPER: "sccache"

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
      - uses: mozilla-actions/sccache-action@v0.0.9

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

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