File tree Expand file tree Collapse file tree 7 files changed +10
-10
lines changed Expand file tree Collapse file tree 7 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 20
20
- name : Install cargo-audit
21
21
run : cargo install cargo-audit
22
22
- name : Checkout
23
- uses : actions/checkout@v3
23
+ uses : actions/checkout@v4
24
24
- name : Run Audit
25
25
run : cargo audit -D warnings
Original file line number Diff line number Diff line change 14
14
rustup toolchain install nightly --profile minimal --component rustfmt --allow-downgrade
15
15
rustup default nightly
16
16
- name : Checkout
17
- uses : actions/checkout@v3
17
+ uses : actions/checkout@v4
18
18
- name : Run Rustfmt
19
19
run :
20
20
cargo fmt --check
36
36
- name : Install Taplo
37
37
run : cargo install taplo-cli
38
38
- name : Checkout
39
- uses : actions/checkout@v3
39
+ uses : actions/checkout@v4
40
40
- name : Run Taplo
41
41
run : taplo fmt --check
Original file line number Diff line number Diff line change 41
41
rustup toolchain install ${{ matrix.channel }} --profile minimal --component clippy --allow-downgrade
42
42
rustup default ${{ matrix.channel }}
43
43
- name : Checkout
44
- uses : actions/checkout@v3
44
+ uses : actions/checkout@v4
45
45
- name : Run Clippy
46
46
run :
47
47
cargo clippy --all-targets --workspace ${{ matrix.features }} -- -D warnings
Original file line number Diff line number Diff line change 10
10
11
11
steps :
12
12
- name : Checkout
13
- uses : actions/checkout@v3
13
+ uses : actions/checkout@v4
14
14
- name : Test Publish
15
15
run :
16
16
cargo publish --dry-run
Original file line number Diff line number Diff line change 22
22
- name : Install cargo-spellcheck
23
23
run : cargo install cargo-spellcheck --locked
24
24
- name : Checkout
25
- uses : actions/checkout@v3
25
+ uses : actions/checkout@v4
26
26
- name : Run Spellcheck
27
27
run : cargo spellcheck check -m 1 2>/dev/null
28
28
- name : Run Spellcheck on CHANGELOG.md
Original file line number Diff line number Diff line change 40
40
rustup toolchain install ${{ matrix.rust }} --profile minimal --allow-downgrade
41
41
rustup default ${{ matrix.rust }}
42
42
- name : Checkout
43
- uses : actions/checkout@v3
43
+ uses : actions/checkout@v4
44
44
- name : Build
45
45
run :
46
46
cargo build --workspace ${{ matrix.features }}
88
88
rustup toolchain install ${{ matrix.rust }} --target thumbv6m-none-eabi --profile minimal --allow-downgrade
89
89
rustup default ${{ matrix.rust }}
90
90
- name : Checkout
91
- uses : actions/checkout@v3
91
+ uses : actions/checkout@v4
92
92
- name : Build
93
93
run :
94
94
cargo build --target thumbv6m-none-eabi ${{ matrix.features }} -p ensure-no-std
@@ -116,7 +116,7 @@ jobs:
116
116
run :
117
117
rustup toolchain install nightly --profile minimal --allow-downgrade
118
118
- name : Checkout
119
- uses : actions/checkout@v3
119
+ uses : actions/checkout@v4
120
120
- name : Build
121
121
working-directory : test-crates/minimal-versions
122
122
run : |
Original file line number Diff line number Diff line change 21
21
rustup toolchain install nightly --profile minimal --component miri,rust-src --allow-downgrade
22
22
rustup default nightly
23
23
- name : Checkout
24
- uses : actions/checkout@v3
24
+ uses : actions/checkout@v4
25
25
- name : Test
26
26
run :
27
27
cargo miri test --workspace ${{ matrix.features }} --all-targets --no-fail-fast
You can’t perform that action at this time.
0 commit comments