From 204ccc50ba62d6cd89bfed75ba201851c21a6875 Mon Sep 17 00:00:00 2001 From: teddy Date: Tue, 15 Oct 2024 12:54:28 -0300 Subject: [PATCH] ci: quick and dirty medusa workflow using a custom base container --- .github/workflows/medusa.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 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 0000000..e4f7b23 --- /dev/null +++ b/.github/workflows/medusa.yml @@ -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