From bfa7c0320dca2bb38664065a6552396ab7997534 Mon Sep 17 00:00:00 2001 From: teddy Date: Tue, 15 Oct 2024 12:54:28 -0300 Subject: [PATCH] ci: basic medusa gh action (short timeout to debug it) --- .github/workflows/medusa.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/medusa.yml diff --git a/.github/workflows/medusa.yml b/.github/workflows/medusa.yml new file mode 100644 index 00000000..c145084f --- /dev/null +++ b/.github/workflows/medusa.yml @@ -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 +