Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
Reuben Rodrigues committed Nov 5, 2021
1 parent 56c435d commit 76bd307
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/detectors.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
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: Detectors 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: |
git submodule update --init --recursive
python CI/slither/setup.py install
pip install deepdiff
pip install pytest
pip install solc-select
solc-select install all
solc-select use 0.7.3
- name: Test with pytest
run: |
slither .

0 comments on commit 76bd307

Please sign in to comment.