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 cc8da94
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/medusa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
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: id
- name: debug3
run: ls
- name: debug4
run: chown -R ethsec:ethsec ${GITHUB_WORKSPACE}
- name: Checkout
uses: actions/checkout@v3
with:
submodules: "recursive"
fetch-depth: 1
- name: Install dependencies
run: yarn --frozen-lockfile --network-concurrency 1

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

0 comments on commit cc8da94

Please sign in to comment.