Overview
| Comment: | fix action to cover all push and pull_requests only once (by CodeRabbit) |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
71a7f0e748cbf9ae2a57e1dc3f9596e4 |
| User & Date: | arcade on 2026-04-23 09:48:57.930 |
| Other Links: | manifest | tags |
Context
|
2026-04-23
| ||
| 10:00 | fix version (I missed one bump recently) leaf check-in: 3b5fe61104 user: arcade tags: trunk | |
| 09:48 | fix action to cover all push and pull_requests only once (by CodeRabbit) check-in: 71a7f0e748 user: arcade tags: trunk | |
| 09:05 | bump sccache action, bump packages due to security issues check-in: 1079228c37 user: arcade tags: trunk | |
Changes
Modified .github/workflows/rust-clippy.yml
from [544bd09319]
to [b19cf4cd44].
1 | name: rust-ci | > | > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
name: rust-ci
on:
push:
branches: [ master, release ]
pull_request:
# sccache enable for rust/C builds
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
jobs:
rust-ci-run:
name: Run rust-clippy analyzing and tests
runs-on: ubuntu-latest
if: github.event_name == 'push' || (github.head_ref != 'master' && github.head_ref != 'release')
permissions:
contents: read
steps:
# SETUP
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
|
| ︙ | ︙ |