Skip to content

Introduce slither #1139

Introduce slither

Introduce slither #1139

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
env:
MINIMAL_SOLC_VERSION: 0.8.20
jobs:
contract-test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Resolve dependencies
run: npm install
- name: Build and Check sizes
run: make build
- name: Run tests
run: make test
- name: Run coverage
run: make coverage
- name: Linting
run: make lint
- name: Build and Check sizes with minimal solidity version
run: make SOLC_VERSION=${{ env.MINIMAL_SOLC_VERSION }} build
- name: Run tests with minimal solidity version
run: make SOLC_VERSION=${{ env.MINIMAL_SOLC_VERSION }} test
slither:
name: Slither analysis
needs: contract-test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: crytic/slither-action@v0.4.0
with:
node-version: 20.13
slither-version: 0.10.1
e2e-test:
name: E2E test
needs: contract-test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Resolve dependencies
run: npm install
- name: Setup chains for E2E test (IBFT2)
run: make network-ibft2
- name: E2E test (IBFT2)
run: make e2e-test network-down
- name: Setup chains for E2E test (QBFT)
run: make network-qbft
- name: E2E test (QBFT)
run: make e2e-test network-down