Skip to content

Commit

Permalink
ci: quick and dirty medusa workflow using a custom base container
Browse files Browse the repository at this point in the history
  • Loading branch information
0xteddybear committed Oct 16, 2024
1 parent f92068b commit 204ccc5
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/medusa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Run medusa
on:
push:
branches: [main, dev]
pull_request:
branches:
- "**"
jobs:
medusa-tests:
name: Medusa Test
runs-on: ubuntu-latest
container: 0xteddybear/eth-security-toolbox-ci

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive

- name: Install dependencies
run: yarn --frozen-lockfile --network-concurrency 1

- name: Run Medusa
run: medusa fuzz --timeout 100

0 comments on commit 204ccc5

Please sign in to comment.