mirror of https://github.com/smithy-lang/smithy-rs
13 lines
315 B
Bash
Executable File
13 lines
315 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
# This script contains additional CI checks to run for this specific package
|
|
|
|
set -e
|
|
|
|
echo "### Testing unredacted-logging logging feature"
|
|
cargo test logging:: --features unredacted-logging
|