Skip to content

[KLC-1919] feat(build): add musl library support for Alpine-based Docker images #48

[KLC-1919] feat(build): add musl library support for Alpine-based Docker images

[KLC-1919] feat(build): add musl library support for Alpine-based Docker images #48

Workflow file for this run

name: Builds and tests
on:
push:
branches:
- master
- klever
pull_request:
jobs:
rust_test:
name: Rust tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup toolchain
run: rustup default 1.88
- name: Run rust tests
run: cargo test
clippy_check:
permissions: write-all
name: Clippy linter check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup toolchain
run: |
rustup default 1.88
rustup component add clippy
- name: Run clippy
run: cargo clippy --all-features