File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 6
6
on :
7
7
# Triggers the workflow on push or pull request events but only for the master branch
8
8
push :
9
- branches : [ master, act-amm ]
9
+ branches : [ master, hevm-transactions ]
10
10
pull_request :
11
11
branches : [ master ]
12
12
15
15
16
16
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
17
17
jobs :
18
+ runevm :
19
+ name : run hevm tests
20
+ runs-on : ubuntu-latest
21
+ steps :
22
+ - uses : actions/checkout@v2
23
+ - uses : cachix/install-nix-action@v20
24
+ with :
25
+ nix_path : nixpkgs=channel:nixos-unstable
26
+ - uses : haskell/actions/setup@v1
27
+ with :
28
+ ghc-version : ' 9.4.5' # Exact version of ghc to use
29
+ # cabal-version: 'latest'. Omitted, but defaults to 'latest'
30
+ enable-stack : true
31
+ stack-version : ' latest'
32
+ - working-directory : ./evm
33
+ - run : stack test
18
34
runhaskell :
19
35
name : run tests
20
36
runs-on : ubuntu-latest # or macOS-latest, or windows-latest
Original file line number Diff line number Diff line change
1
+ # Open-games HEVM integration
2
+
3
+ This project integrates open games with HEVM, an execution environement for EVM bytecode.
4
+
5
+ This allows the game-theoretic analysis of smart contracts
You can’t perform that action at this time.
0 commit comments