Skip to content

Commit d9c00dc

Browse files
committed
ci: try introducing a clippy error
1 parent 7ade569 commit d9c00dc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,11 @@ jobs:
305305
target: x86_64-unknown-linux-gnu
306306
architecture: x64
307307
libc: glibc
308+
- os: ubuntu-latest
309+
platform: linux
310+
target: x86_64-unknown-linux-musl
311+
architecture: x64
312+
libc: musl
308313
- os: windows-latest
309314
platform: windows
310315
target: x86_64-pc-windows-msvc
@@ -317,11 +322,6 @@ jobs:
317322
platform: darwin
318323
target: aarch64-apple-darwin
319324
architecture: arm64
320-
- os: ubuntu-latest
321-
platform: linux
322-
target: x86_64-unknown-linux-musl
323-
architecture: x64
324-
libc: musl
325325

326326
steps:
327327
- name: Configure git to use LF (Windows)

components/clarity-repl/src/repl/interpreter.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ impl ClarityInterpreter {
386386
.as_ref()
387387
.is_some_and(|data| data.is_mainnet);
388388
let chain_id = if is_mainnet {
389-
CHAIN_ID_MAINNET
389+
CHAIN_ID_MAINNET.clone()
390390
} else {
391391
CHAIN_ID_TESTNET
392392
};

0 commit comments

Comments
 (0)