Skip to content

Commit

Permalink
ci: basic medusa gh action (short timeout to debug it)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xteddybear committed Oct 15, 2024
1 parent fe17c34 commit bfa7c03
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/medusa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Run medusa
on:
push:
branches: [main, dev]
pull_request:
branches:
- "**"
jobs:
tests:
concurrency: ci-medusa-${{ github.head_ref || github.run_id }}
runs-on: ubuntu-latest
container:
image: trailofbits/eth-security-toolbox:nightly
options: --user root
steps:
- name: debug1
run: pwd
- name: debug2
run: whoami
- name: debug3
run: ls
- name: Checkout
uses: actions/checkout@v3
with:
submodules: "recursive"
fetch-depth: 1

- name: Run medusa for five minutes
run: medusa fuzz --timeout 30

0 comments on commit bfa7c03

Please sign in to comment.