Skip to content

Attempt to build an artifact. #10

Attempt to build an artifact.

Attempt to build an artifact. #10

Workflow file for this run

name: Clippy
on:
push:
pull_request:
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install stable
- run: rustup target add x86_64-unknown-linux-musl
- run: rustup component add clippy
- uses: Swatinem/rust-cache@v2
- run: cargo clippy
- run: |
sudo apt-get update -y
sudo apt-get install musl-tools -y
- run: cargo build --release --target x86_64-unknown-linux-musl
- uses: actions/upload-artifact@v4
with:
name: reg-interface-x86_64-unknown-linux-musl
path: target/release/reg-interface