Files
tuwunel/.github/workflows/lint.yml
Jason Volk 481b67f1f9 Combine Base and Deps workflows.
Add workflow arguments for verbosity.

Add missing ldap to full features.

Superpose --all-features as backstop for unlisted features.

Fix hardened_malloc requiring gcc

Signed-off-by: Jason Volk <jason@zemos.net>
2025-05-07 23:03:46 +00:00

48 lines
960 B
YAML

name: Linting
on:
workflow_call:
jobs:
fmt:
name: Format
uses: ./.github/workflows/bake.yml
with:
bake_targets: '["fmt"]'
cargo_profiles: '["test"]'
feat_sets: '["none"]'
rust_toolchains: '["nightly"]'
audit:
name: Audit
uses: ./.github/workflows/bake.yml
with:
bake_targets: '["audit"]'
cargo_profiles: '["test"]'
feat_sets: '["none"]'
rust_toolchains: '["nightly"]'
lychee:
name: Lychee
uses: ./.github/workflows/bake.yml
with:
bake_targets: '["lychee"]'
cargo_profiles: '["test"]'
feat_sets: '["none"]'
rust_toolchains: '["nightly"]'
clippy:
name: Clippy
uses: ./.github/workflows/bake.yml
with:
bake_targets: '["clippy"]'
doc:
name: Docs
needs: [clippy]
uses: ./.github/workflows/bake.yml
with:
bake_targets: '["docs"]'
cargo_profiles: '["test"]'
rust_toolchains: '["nightly"]'