Check-in [8271e3e440]
Logged in as anonymous
Overview
Comment:fix github workflows a little (by CodeRabbit)
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | BOGUS
Files: files | file ages | folders
SHA3-256: 8271e3e440b2311fb453ae63207688af483f5a38fd2897ed4cb52baca9b4bc15
User & Date: arcade on 2026-04-23 09:32:39.760
Other Links: branch diff | manifest | tags
Context
2026-04-23
09:32
fix github workflows a little (by CodeRabbit) closed check-in: 8271e3e440 user: arcade tags: BOGUS
2026-04-18
17:15
bump tgbot and other deps, fixes a few critical issues check-in: a6a79a67ba user: arcade tags: release, v0.6.4
Changes
1



2

3
4
5
6
7
8
9
10
11
12

13
14
15
16
17
18
19
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 ]
on: [ pull_request ]
  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