Overview
| Comment: | simplify workflow |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
2fc1e49ea5c97a4c786cf1ded0183eea |
| 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
Modified .github/workflows/rust-clippy.yml
from [589584ce6a]
to [fc0335ac73].
|
| | < < < < < | | < < > | < < | < > | > | | 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
|