-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (44 loc) · 1.14 KB
/
contracts.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Tests
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
paths: ["src/**", "test/**/**", ".github/workflows/contracts.yaml"]
jobs:
test:
name: Contract-Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Install node
uses: actions/setup-node@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install solc-select
run: |
pip3 install solc-select
- name: Compile
run: |
forge build --build-info
solc-select install 0.8.21
solc-select use 0.8.21
- name: Run forge tests
run: forge test -vvv
- name: Patch foundry
run: rm foundry.toml
- name: Run Slither
uses: crytic/slither-action@v0.2.0
id: slither
with:
target: "src/ImpactEvaluator.sol"
fail-on: none
solc-version: 0.8.21