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>
48 lines
960 B
YAML
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"]'
|