Differences From
Artifact [893c5d9065]:
1
2
3
4
5
6
7
8
9
10
|
name: rust-ci
on: [ push, pull_request]
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
jobs:
rust-ci-run:
name: Run rust-clippy analyzing and tests
|
>
>
>
>
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
name: rust-ci
on: [ push, pull_request]
# only run one job per commit
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# 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
|
| ︙ | | | ︙ | |