diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 326e88c1..8e11c693 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,37 +11,6 @@ env: SEPOLIA_RPC: ${{ secrets.SEPOLIA_RPC }} jobs: - static-test: - name: slither - runs-on: ubuntu-latest - env: - NODE_ENV: production - steps: - - uses: actions/checkout@v3 - - - name: Install Foundry - uses: foundry-rs/foundry-toolchain@v1 - with: - version: nightly - - - name: Use Node.js - uses: actions/setup-node@v3 - with: - node-version: 18.x - cache: 'yarn' - - - name: Install dependencies - run: yarn --frozen-lockfile --network-concurrency 1 - - - name: Compile contracts - run: yarn build - - - name: Run slither - uses: crytic/slither-action@v0.3.1 - with: - slither-config: slither.config.json - fail-on: medium - unit-tests: name: Run Unit Tests runs-on: ubuntu-latest diff --git a/slither.config.json b/slither.config.json deleted file mode 100644 index 22ebc22f..00000000 --- a/slither.config.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "detectors_to_exclude": "timestamp,uninitialized-local", - "exclude_informational": true, - "exclude_low": false, - "exclude_medium": false, - "exclude_high": false, - "disable_color": false, - "filter_paths": "(test/|node_modules/|script/)", - "legacy_ast": false -} \ No newline at end of file