We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9278074 commit ca331bdCopy full SHA for ca331bd
.github/workflows/clippy.yaml
@@ -10,7 +10,16 @@ jobs:
10
11
steps:
12
- uses: actions/checkout@v4
13
- - run: rustup toolchain install stable --profile minimal
+ - run: rustup toolchain install stable
14
+ - run: rustup target add x86_64-unknown-linux-musl
15
- run: rustup component add clippy
16
- uses: Swatinem/rust-cache@v2
17
- run: cargo clippy
18
+ - run: |
19
+ sudo apt-get update -y
20
+ sudo apt-get install musl-tools -y
21
+ - run: cargo build --release --target x86_64-unknown-linux-musl
22
+ - uses: actions/upload-artifact@v4
23
+ with:
24
+ name: reg-interface-x86_64-unknown-linux-musl
25
+ path: target/x86_64-unknown-linux-musl/release/reg-interface
0 commit comments