Skip to content

Commit

Permalink
update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
andrevidela committed Dec 27, 2023
1 parent 33cc8e1 commit f516590
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: CI
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master, act-amm ]
branches: [ master, hevm-transactions ]
pull_request:
branches: [ master ]

Expand All @@ -15,6 +15,23 @@ on:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
runevm:
name: run hevm tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: cachix/install-nix-action@v20
with:
nix_path: nixpkgs=channel:nixos-unstable
- uses: haskell/actions/setup@v1
with:
ghc-version: '9.4.5' # Exact version of ghc to use
# cabal-version: 'latest'. Omitted, but defaults to 'latest'
enable-stack: true
stack-version: 'latest'
- run: |
cd evm
stack test
runhaskell:
name: run tests
runs-on: ubuntu-latest # or macOS-latest, or windows-latest
Expand Down
5 changes: 5 additions & 0 deletions evm/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Open-games HEVM integration

This project integrates open games with HEVM, an execution environement for EVM bytecode.

This allows the game-theoretic analysis of smart contracts

0 comments on commit f516590

Please sign in to comment.