Static Analyzer for Solidity
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
slither/scripts/ci_test_cli.sh

21 lines
449 B

#!/usr/bin/env bash
### Test
4 years ago
solc-select use 0.7.0
4 years ago
if ! slither "tests/config/test.sol" --solc-ast --ignore-return-value; then
echo "--solc-ast failed"
exit 1
fi
4 years ago
if ! slither "tests/config/test.sol" --solc-disable-warnings --ignore-return-value; then
echo "--solc-disable-warnings failed"
exit 1
fi
4 years ago
if ! slither "tests/config/test.sol" --disable-color --ignore-return-value; then
echo "--disable-color failed"
exit 1
fi