diff --git a/.github/workflows/medusa.yml b/.github/workflows/medusa.yml new file mode 100644 index 00000000..8fefbd4e --- /dev/null +++ b/.github/workflows/medusa.yml @@ -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 +