File tree Expand file tree Collapse file tree 6 files changed +12
-12
lines changed Expand file tree Collapse file tree 6 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,10 @@ jobs:
27
27
components : rustfmt, clippy
28
28
override : true
29
29
- name : Format check
30
- run : cargo +1.82.0 fmt --manifest-path ./target_chains/cosmwasm/Cargo.toml --all -- --check
30
+ run : cargo fmt --manifest-path ./target_chains/cosmwasm/Cargo.toml --all -- --check
31
31
if : success() || failure()
32
32
- name : Clippy check
33
- run : cargo +1.82.0 clippy --manifest-path ./target_chains/cosmwasm/Cargo.toml --tests -- --deny warnings
33
+ run : cargo clippy --manifest-path ./target_chains/cosmwasm/Cargo.toml --tests -- --deny warnings
34
34
if : success() || failure()
35
35
- name : Build
36
36
run : cargo build --verbose
Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ jobs:
20
20
toolchain : 1.82.0
21
21
override : true
22
22
- name : Format check
23
- run : cargo +1.82.0 fmt --manifest-path ./apps/fortuna/Cargo.toml --all -- --check
23
+ run : cargo fmt --manifest-path ./apps/fortuna/Cargo.toml --all -- --check
24
24
if : success() || failure()
25
25
- name : Clippy check
26
- run : cargo +1.82.0 clippy --manifest-path ./apps/fortuna/Cargo.toml --tests -- --deny warnings
26
+ run : cargo clippy --manifest-path ./apps/fortuna/Cargo.toml --tests -- --deny warnings
27
27
if : success() || failure()
28
28
- name : Run executor tests
29
29
run : cargo test --manifest-path ./apps/fortuna/Cargo.toml
Original file line number Diff line number Diff line change @@ -25,10 +25,10 @@ jobs:
25
25
with :
26
26
repo-token : ${{ secrets.GITHUB_TOKEN }}
27
27
- name : Format check
28
- run : cargo +1.82.0 fmt --manifest-path ./apps/hermes/server/Cargo.toml --all -- --check
28
+ run : cargo fmt --manifest-path ./apps/hermes/server/Cargo.toml --all -- --check
29
29
if : success() || failure()
30
30
- name : Clippy check
31
- run : cargo +1.82.0 clippy --manifest-path ./apps/hermes/server/Cargo.toml --tests -- --deny warnings
31
+ run : cargo clippy --manifest-path ./apps/hermes/server/Cargo.toml --tests -- --deny warnings
32
32
if : success() || failure()
33
33
- name : Run executor tests
34
34
run : cargo test --manifest-path ./apps/hermes/server/Cargo.toml
Original file line number Diff line number Diff line change @@ -37,10 +37,10 @@ jobs:
37
37
- name : check Cargo.toml formatting
38
38
run : find . -name Cargo.toml -exec taplo fmt --check --diff {} \;
39
39
- name : Format check
40
- run : cargo +1.82.0 fmt --manifest-path ./lazer/Cargo.toml --all -- --check
40
+ run : cargo fmt --manifest-path ./lazer/Cargo.toml --all -- --check
41
41
if : success() || failure()
42
42
- name : Clippy check
43
- run : cargo +1.82.0 clippy --manifest-path ./lazer/Cargo.toml --all-targets -- --deny warnings
43
+ run : cargo clippy --manifest-path ./lazer/Cargo.toml --all-targets -- --deny warnings
44
44
if : success() || failure()
45
45
- name : Build Solana programs
46
46
run : cargo build-sbf
Original file line number Diff line number Diff line change @@ -26,10 +26,10 @@ jobs:
26
26
sh -c "$(curl -sSfL https://release.solana.com/v1.18.23/install)"
27
27
echo "/home/runner/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH
28
28
- name : Format check
29
- run : cargo +1.73.0 fmt --manifest-path ./governance/remote_executor/Cargo.toml --all -- --check
29
+ run : cargo fmt --manifest-path ./governance/remote_executor/Cargo.toml --all -- --check
30
30
if : success() || failure()
31
31
- name : Clippy check
32
- run : cargo +1.73.0 clippy --manifest-path ./governance/remote_executor/Cargo.toml --tests -- --deny warnings
32
+ run : cargo clippy --manifest-path ./governance/remote_executor/Cargo.toml --tests -- --deny warnings
33
33
if : success() || failure()
34
34
- name : Run executor tests
35
35
run : cargo test-sbf --manifest-path ./governance/remote_executor/Cargo.toml
Original file line number Diff line number Diff line change @@ -33,10 +33,10 @@ jobs:
33
33
sh -c "$(curl -sSfL https://release.solana.com/v1.16.20/install)"
34
34
echo "/home/runner/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH
35
35
- name : Format check
36
- run : cargo +1.73.0 fmt --manifest-path ./target_chains/solana/Cargo.toml --all -- --check
36
+ run : cargo fmt --manifest-path ./target_chains/solana/Cargo.toml --all -- --check
37
37
if : success() || failure()
38
38
- name : Clippy check
39
- run : cargo +1.73.0 clippy --manifest-path ./target_chains/solana/Cargo.toml --tests -- --deny warnings
39
+ run : cargo clippy --manifest-path ./target_chains/solana/Cargo.toml --tests -- --deny warnings
40
40
if : success() || failure()
41
41
- name : Build
42
42
run : cargo-build-sbf
You can’t perform that action at this time.
0 commit comments