From db361f3bd74fdd96c6b45d54c2c6efc6f3006689 Mon Sep 17 00:00:00 2001 From: drgorillamd <83670532+drgorillamd@users.noreply.github.com> Date: Mon, 20 May 2024 18:06:22 +0200 Subject: [PATCH] fix: rm slither from ci --- .github/workflows/tests.yml | 31 ------------------------------- slither.config.json | 10 ---------- 2 files changed, 41 deletions(-) delete mode 100644 slither.config.json 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