mirror of https://github.com/crytic/slither
parent
fb5b4e9d51
commit
683ebb924d
@ -0,0 +1,48 @@ |
||||
--- |
||||
name: Lint Code Base |
||||
|
||||
defaults: |
||||
run: |
||||
# To load bashrc |
||||
shell: bash -ieo pipefail {0} |
||||
|
||||
on: |
||||
pull_request: |
||||
branches: [master, dev] |
||||
|
||||
jobs: |
||||
build: |
||||
name: Lint Code Base |
||||
runs-on: ubuntu-latest |
||||
|
||||
steps: |
||||
- name: Checkout Code |
||||
uses: actions/checkout@v2 |
||||
|
||||
- name: Set up Python 3.6 |
||||
uses: actions/setup-python@v2 |
||||
with: |
||||
python-version: 3.6 |
||||
|
||||
- name: Install dependencies |
||||
run: | |
||||
pip install . |
||||
pip install deepdiff numpy |
||||
|
||||
echo 'SHELLCHECK_OPTS="-e SC1090"' >> ~/.bashrc |
||||
|
||||
mkdir -p .github/linters |
||||
cp pyproject.toml .github/linters |
||||
|
||||
- name: Lint everything |
||||
uses: docker://github/super-linter:v3 |
||||
if: always() |
||||
env: |
||||
# run linter on everything to catch preexisting problems |
||||
VALIDATE_ALL_CODEBASE: true |
||||
DEFAULT_BRANCH: master |
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
||||
PYTHON_PYLINT_CONFIG_FILE: pyproject.toml |
||||
VALIDATE_JSON: false |
||||
VALIDATE_JAVASCRIPT_STANDARD: false |
||||
VALIDATE_PYTHON_BLACK: false |
Loading…
Reference in new issue