mirror of https://github.com/crytic/slither
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.
45 lines
960 B
45 lines
960 B
4 years ago
|
---
|
||
|
name: Detectors tests
|
||
|
|
||
|
defaults:
|
||
|
run:
|
||
|
# To load bashrc
|
||
|
shell: bash -ieo pipefail {0}
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
branches: [master, dev]
|
||
|
schedule:
|
||
|
# run CI every day even if no PRs/merges occur
|
||
|
- cron: '0 12 * * *'
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
name: Parser tests
|
||
|
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: |
|
||
|
python setup.py install
|
||
|
pip install deepdiff
|
||
|
pip install pytest
|
||
|
|
||
|
git clone https://github.com/crytic/solc-select.git
|
||
|
./solc-select/scripts/install.sh
|
||
|
export PATH=/home/runner/.solc-select:$PATH
|
||
|
echo "export PATH=/home/runner/.solc-select:$PATH" >> ~/.bashrc
|
||
|
|
||
|
- name: Test with pytest
|
||
|
run: |
|
||
|
pytest tests/test_detectors.py
|
||
|
|