FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
utils/.github/workflows/workspace.yml at master · RustCrypto/utils · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
RustCrypto
/
utils
Public
Notifications
You must be signed in to change notification settings
Fork
168
Star
669
Code
Issues
25
Pull requests
8
Actions
Security and quality
3
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
utils
/
.github
/
workflows
/
workspace.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
52 lines (45 loc) · 1.2 KB
Breadcrumbs
utils
/
.github
/
workflows
/
workspace.yml
Copy path
File metadata and controls
52 lines (45 loc) · 1.2 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name
:
Workspace
on
:
pull_request
:
paths-ignore
:
-
README.md
push
:
branches
:
master
permissions
:
contents
:
read
#
Cancels CI jobs when new commits are pushed to a PR branch
concurrency
:
group
:
${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress
:
true
jobs
:
clippy
:
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v7
-
uses
:
RustCrypto/actions/cargo-cache@master
-
uses
:
dtolnay/rust-toolchain@master
with
:
toolchain
:
1.92.0
#
Pinned to prevent breakages
components
:
clippy
-
run
:
cargo clippy --workspace --all-features --lib --bins --tests -- -Dwarnings
rustfmt
:
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v7
-
uses
:
dtolnay/rust-toolchain@master
with
:
toolchain
:
stable
components
:
rustfmt
-
run
:
cargo fmt --all -- --check
typos
:
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v7
-
uses
:
crate-ci/typos@v1
lock
:
name
:
Check Cargo.lock
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v7
-
uses
:
dtolnay/rust-toolchain@stable
-
run
:
cargo check --workspace --locked
Back
|
FazBrowse Home
|
New Git URL