Skip to content

build(deps): bump clap from 4.6.0 to 4.6.1 #2092

build(deps): bump clap from 4.6.0 to 4.6.1

build(deps): bump clap from 4.6.0 to 4.6.1 #2092

Workflow file for this run

on:
push:
branches: [main]
pull_request:
name: CI
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- name: Check
run: cargo check
test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- name: Build client (async-std / native)
run: |
cargo build --manifest-path ./client/Cargo.toml --no-default-features --features async-std --features native_crypto --features schema
- name: Build client (async-std / OpenSSL)
run: |
cargo build --manifest-path ./client/Cargo.toml --no-default-features --features async-std --features openssl_crypto --features schema
- name: Build client (tokio / native)
run: |
cargo build --manifest-path ./client/Cargo.toml --no-default-features --features tokio --features native_crypto --features schema
- name: Build client (tokio / OpenSSL)
run: |
cargo build --manifest-path ./client/Cargo.toml --no-default-features --features tokio --features openssl_crypto --features schema
- name: Build CLI
run: |
cargo build --manifest-path ./cli/Cargo.toml
- name: Build kwallet-parser
run: |
cargo build --manifest-path ./kwallet/parser/Cargo.toml
- name: Build kwallet-cli
run: |
cargo build --manifest-path ./kwallet/cli/Cargo.toml
- name: Build Server (native)
run: |
cargo build --manifest-path ./server/Cargo.toml
- name: Build Server (OpenSSL)
run: |
cargo build --manifest-path ./server/Cargo.toml --no-default-features --features openssl_crypto
- name: Build PAM
run: |
cargo build --manifest-path ./pam/Cargo.toml
- name: Build Portal
run: |
cargo build --manifest-path ./portal/Cargo.toml
- name: Test (native)
run: |
cargo test --manifest-path ./client/Cargo.toml --no-default-features --features tokio --features native_crypto --features schema
- name: Test (OpenSSL)
run: |
cargo test --manifest-path ./client/Cargo.toml --no-default-features --features tokio --features openssl_crypto --features schema
- name: Test Server (native)
run: |
cargo test --manifest-path ./server/Cargo.toml
- name: Test Server (OpenSSL)
run: |
cargo test --manifest-path ./server/Cargo.toml --no-default-features --features openssl_crypto
- name: Test kwallet-parser
run: |
cargo test --manifest-path ./kwallet/parser/Cargo.toml
cargo-deny:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: EmbarkStudios/cargo-deny-action@v2
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- name: Rust Format
run: cargo fmt --all --check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Clippy workspace (default features)
run: cargo clippy --workspace --all-targets -- -D warnings
- name: Clippy client (tracing / async-std / native crypto)
run: cargo clippy -p oo7 --no-default-features --features tracing,async-std,native_crypto,schema -- -D warnings
- name: Clippy client (tracing / tokio / OpenSSL)
run: cargo clippy -p oo7 --no-default-features --features tracing,tokio,openssl_crypto,schema --all-targets -- -D warnings
meson:
name: Meson
runs-on: ubuntu-latest
container: fedora:latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- name: Install dependencies
run: dnf install -y git meson gcc systemd
- name: Build (portal)
working-directory: ./portal
run: meson setup ./ _build --prefix /usr && ninja -C _build
- name: Build (server)
working-directory: ./server
run: meson setup ./ _build --prefix /usr && ninja -C _build
- name: Build (PAM)
working-directory: ./pam
run: meson setup ./ _build --prefix /usr && ninja -C _build